Class CFNotificationSuspensionBehavior


  • public final class CFNotificationSuspensionBehavior
    extends java.lang.Object
    • Field Summary

      Fields 
      Modifier and Type Field Description
      static long Coalesce
      The server will not queue any notifications with this name and object while the process/app is in the background.
      static 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.
      static long Drop  
      static long Hold
      The server will only queue the last notification of the specified name and object; earlier notifications are dropped.
    • Method Summary

      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Field Detail

      • 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