Uses of Class
com.turo.pushy.apns.DeliveryPriority
-
Packages that use DeliveryPriority Package Description com.turo.pushy.apns Contains classes and interfaces for interacting with the Apple Push Notification service (APNs).com.turo.pushy.apns.util Contains classes for working with APNs tokens and payloads. -
-
Uses of DeliveryPriority in com.turo.pushy.apns
Methods in com.turo.pushy.apns that return DeliveryPriority Modifier and Type Method Description static DeliveryPriorityDeliveryPriority. getFromCode(int code)DeliveryPriorityApnsPushNotification. getPriority()Returns the priority with which this push notification should be sent to the receiving device.static DeliveryPriorityDeliveryPriority. valueOf(String name)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.turo.pushy.apns.util
Methods in com.turo.pushy.apns.util that return DeliveryPriority Modifier and Type Method Description DeliveryPrioritySimpleApnsPushNotification. getPriority()Returns the priority with which this push notification should be delivered to the receiving device.Constructors in com.turo.pushy.apns.util with parameters of type DeliveryPriority Constructor Description SimpleApnsPushNotification(String token, String topic, String payload, Date 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, Date invalidationTime, DeliveryPriority priority, String collapseId)Constructs a new push notification with the given token, topic, payload, delivery expiration time, delivery priority, and "collapse identifier."SimpleApnsPushNotification(String token, String topic, String payload, Date 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.
-