Package apple.corefoundation.enums
Class CFNotificationSuspensionBehavior
- java.lang.Object
-
- apple.corefoundation.enums.CFNotificationSuspensionBehavior
-
public final class CFNotificationSuspensionBehavior extends java.lang.Object
-
-
Field Summary
Fields Modifier and Type Field Description static longCoalesceThe server will not queue any notifications with this name and object while the process/app is in the background.static longDeliverImmediatelyThe server will hold all matching notifications until the queue has been filled (queue size determined by the server) at which point the server may flush queued notifications.static longDropstatic longHoldThe server will only queue the last notification of the specified name and object; earlier notifications are dropped.
-
-
-
Field Detail
-
Drop
public static final long Drop
- See Also:
- Constant Field Values
-
Coalesce
public static final long Coalesce
The server will not queue any notifications with this name and object while the process/app is in the background.- See Also:
- Constant Field Values
-
Hold
public static final long Hold
The server will only queue the last notification of the specified name and object; earlier notifications are dropped.- See Also:
- Constant Field Values
-
DeliverImmediately
public static final long DeliverImmediately
The server will hold all matching notifications until the queue has been filled (queue size determined by the server) at which point the server may flush queued notifications.- See Also:
- Constant Field Values
-
-