This commit is contained in:
tracyboehrer 2021-03-15 10:53:21 -05:00 коммит произвёл GitHub
Родитель 47777086d5
Коммит 44969e6b71
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
2 изменённых файлов: 7 добавлений и 2 удалений

Просмотреть файл

@ -1000,7 +1000,7 @@ public class Activity {
* A delivery hint to signal to the recipient alternate delivery paths for the
* activity.
* <p>
* The default delivery mode is \"default\".
* The default delivery mode is \"default\". See {@link DeliveryModes}.
*
* @return The delivery mode hint.
*/

Просмотреть файл

@ -23,7 +23,12 @@ public enum DeliveryModes {
/**
* The value for expected replies delivery modes.
*/
EXPECT_REPLIES("expectReplies");
EXPECT_REPLIES("expectReplies"),
/**
* The value for ephemeral delivery modes.
*/
EPHEMERAL("ephemeral");
/**
* The actual serialized value for a DeliveryModes instance.