We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
DO_NOT_AWAKEN
1 parent 85eedde commit b5e3b61Copy full SHA for b5e3b61
pushy/src/main/java/com/eatthepath/pushy/apns/DeliveryPriority.java
@@ -48,7 +48,13 @@ public enum DeliveryPriority {
48
* <p>Indicates that the APNs server should attempt to deliver a notification "at a time that conserves power on
49
* the device receiving it."</p>
50
*/
51
- CONSERVE_POWER(5);
+ CONSERVE_POWER(5),
52
+
53
+ /**
54
+ * Indicates that the APNs should "prioritize the device’s power considerations over all other factors for delivery,
55
+ * and prevent awakening the device."
56
+ */
57
+ DO_NOT_AWAKEN(1);
58
59
private final int code;
60
0 commit comments