Uses of Enum
com.eatthepath.pushy.apns.DeliveryPriority
Package
Description
Contains classes and interfaces for interacting with the Apple Push Notification service (APNs).
Contains classes for working with APNs tokens and payloads.
-
Uses of DeliveryPriority in com.eatthepath.pushy.apns
Modifier and TypeMethodDescriptionstatic DeliveryPriority
DeliveryPriority.getFromCode
(int code) ApnsPushNotification.getPriority()
Returns the priority with which this push notification should be sent to the receiving device.static DeliveryPriority
Returns the enum constant of this type with the specified name.static DeliveryPriority[]
DeliveryPriority.values()
Returns an array containing the constants of this enum type, in the order they are declared. -
Uses of DeliveryPriority in com.eatthepath.pushy.apns.util
Modifier and TypeMethodDescriptionSimpleApnsPushNotification.getPriority()
Returns the priority with which this push notification should be delivered to the receiving device.ModifierConstructorDescriptionSimpleApnsPushNotification
(String token, String topic, String payload, Instant invalidationTime, DeliveryPriority priority) Constructs a new push notification with the given token, topic, payload, delivery expiration time, and delivery priority.SimpleApnsPushNotification
(String token, String topic, String payload, Instant invalidationTime, DeliveryPriority priority, PushType pushType) Constructs a new push notification with the given token, topic, payload, delivery expiration time, delivery priority, and push notification type.SimpleApnsPushNotification
(String token, String topic, String payload, Instant invalidationTime, DeliveryPriority priority, PushType pushType, String collapseId) Constructs a new push notification with the given token, topic, payload, delivery expiration time, delivery priority, push notification type, and "collapse identifier."SimpleApnsPushNotification
(String token, String topic, String payload, Instant invalidationTime, DeliveryPriority priority, PushType pushType, String collapseId, UUID apnsId) Constructs a new push notification with the given token, topic, payload, delivery expiration time, delivery priority, "collapse identifier," and unique push notification identifier.SimpleApnsPushNotification
(String token, String topic, String payload, Instant invalidationTime, DeliveryPriority priority, String collapseId) Constructs a new push notification with the given token, topic, payload, delivery expiration time, delivery priority, and "collapse identifier." No push notification type is specified.SimpleApnsPushNotification
(String token, String topic, String payload, Instant invalidationTime, DeliveryPriority priority, String collapseId, UUID apnsId) Constructs a new push notification with the given token, topic, payload, delivery expiration time, delivery priority, "collapse identifier," and unique push notification identifier.