All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class com.apple.alpha.core.NotificationQueue

java.lang.Object
   |
   +----com.apple.alpha.core.NativeObject
           |
           +----com.apple.alpha.core.NotificationQueue

public class NotificationQueue
extends NativeObject
This class wraps the Objective-C class NSNotificationQueue.


Variable Index

 o NotificationCoalescingOnName
 o NotificationCoalescingOnSender
 o NotificationNoCoalescing
 o PostASAP
 o PostNow
 o PostWhenIdle

Constructor Index

 o NotificationQueue()
This default constructor is equivalent to Objective-C's [[NSNotificationQueue alloc] init].
 o NotificationQueue(boolean, int)
Protected constructor used by the bridge to wrap an Objective-C object.

Method Index

 o defaultQueue()
A wrapper for the + defaultQueue Objective-C class method.
 o dequeueMatchingNotifications(Notification, int)
A wrapper for the - dequeueNotificationsMatching:coalesceMask: Objective-C instance method.
 o enqueueNotification(Notification, int)
A wrapper for the - enqueueNotification:postingStyle: Objective-C instance method.
 o enqueueNotificationWithCoalesceMaskForModes(Notification, int, int, Array)
A wrapper for the - enqueueNotification:postingStyle:coalesceMask:forModes: Objective-C instance method.

Variables

 o PostWhenIdle
 public static final int PostWhenIdle
 o PostASAP
 public static final int PostASAP
 o PostNow
 public static final int PostNow
 o NotificationNoCoalescing
 public static final int NotificationNoCoalescing
 o NotificationCoalescingOnName
 public static final int NotificationCoalescingOnName
 o NotificationCoalescingOnSender
 public static final int NotificationCoalescingOnSender

Constructors

 o NotificationQueue
 protected NotificationQueue(boolean shouldAllocate,
                             int objcObject)
Protected constructor used by the bridge to wrap an Objective-C object. It should never be invoked directly.

 o NotificationQueue
 public NotificationQueue()
This default constructor is equivalent to Objective-C's [[NSNotificationQueue alloc] init].

Methods

 o defaultQueue
 public static native NotificationQueue defaultQueue()
A wrapper for the + defaultQueue Objective-C class method.

 o enqueueNotificationWithCoalesceMaskForModes
 public native void enqueueNotificationWithCoalesceMaskForModes(Notification notification,
                                                                int postingStyle,
                                                                int coalesceMask,
                                                                Array modes)
A wrapper for the - enqueueNotification:postingStyle:coalesceMask:forModes: Objective-C instance method.

 o enqueueNotification
 public native void enqueueNotification(Notification notification,
                                        int postingStyle)
A wrapper for the - enqueueNotification:postingStyle: Objective-C instance method.

 o dequeueMatchingNotifications
 public native void dequeueMatchingNotifications(Notification notification,
                                                 int coalesceMask)
A wrapper for the - dequeueNotificationsMatching:coalesceMask: Objective-C instance method.


All Packages  Class Hierarchy  This Package  Previous  Next  Index