NotificationCenter
Kind of class: | public class |
---|---|
Package: | |
Inherits from: |
|
Author: | Arthur Clemens |
Classpath: | org.asaplibrary.util.notificationcenter.NotificationCenter |
File last modified: | Saturday, 14 May 2011, 15:19:02 |
This is an almost complete ActionScript implementation of Apple Cocoa's NSNotificationCenter.
- Find out if this can be used for Key-value observing similar to Cocoa's Registering Dependent Keys.
-
Add an observer:
NotificationCenter.getDefaultCenter().addObserver(this, handleAdviceAccordionDidUpdate, "AdviceAccordionDidUpdateNotification");
The 'this' object will now listen to the notifications with name "AdviceAccordionDidUpdateNotification". This notification can be sent by any object, also from the timeline (see below). When the notification "AdviceAccordionDidUpdateNotification" is posted, methodhandleAdviceAccordionDidUpdate
is called (second argument).
The receiving class (the 'this' in the example above) should implement the method handleAdviceAccordionDidUpdate:private function handleAdviceAccordionDidUpdate (inNote:Notification) : void { var notificationName:String = inNote.name; var notificationObject:Object = inNote.object; var productData:Object = inNote.data; // do something with productData ... }
In a class, let's say class A, the object will post a notification like this:NotificationCenter.getDefaultCenter().post("AdviceAccordionDidUpdateNotification", null, prodData);
In our example,prodData
is an object that will be used by the receiving class.
Unregister the observer from the notification with:NotificationCenter.getDefaultCenter().removeObserver(this, "AdviceAccordionDidUpdateNotification");
Timeline notifications The whole idea is that the posting object does not have to know the receiving object. This can be useful for sending an event somewhere from a (nested) timeline. For example we want to draw a background before playing an external movie. At the last frame of the background drawing, we put:stop(); import org.asapframework.events.notificationcenter.NotificationCenter; NotificationCenter.getDefaultCenter().post("MovieBackgroundDidFinishNotification");
And in our manager class we implement:NotificationCenter.getDefaultCenter().addObserver(this, handleMovieBackgroundDidFinishNotification, "MovieBackgroundDidFinishNotification");
On naming
Apple uses a naming convention for notification names. Examples of notification names are:TaskDidTerminateNotification MenuWillFoldNotification So the formula is:Class of Affected Object + Did/Will + Action + Notification
Summary
-
NotificationCenter
(inShouldNotifyErrors:Boolean = false)
- Creates a new NotificationCenter.
-
getDefaultCenter
() : NotificationCenter
- Accesses the default notification center.
- setNotifyErrors (inFlag:Boolean) : void
- getNotifyErrors () : Boolean
-
setCheckOnAdding
(inFlag:Boolean) : void
- Set checking for doubles when calling addObserver.
- getCheckOnAdding () : Boolean
-
addObserver
(inObserver:Object, inMethod:Function, inNotificationName:String = null, inNotificationObject:Object = null) : void
- Registers inObserver to receive notifications with the name inNotificationName and/or containing inNotificationObject.
-
removeObserver
(inObserver:Object, inNotificationName:String = "", inNotificationObject:Object = null) : void
- Removes inObserver as the observer of notifications with the name inNotificationName and object inNotificationObject from the object.
-
post
(inNotificationName:String = "", inNotificationObject:Object = null, inData:Object = null) : void
- Creates a Notification instance and passes this to the observers associated through inNotificationName or inNotificationObject.
- toString () : String
Constructor
NotificationCenter
Creates a new NotificationCenter. Call this constructor only if you explicitely don't want to use the default NotificationCenter, for instance if you want to control performance.
Class methods
getDefaultCenter
Accesses the default notification center. For most cases you can just use this default notification center. If performance becomes problematic (if you have a few thousand observers, and need to do frequent adding and removing) it makes sense to instantiate a custom NotificationCenter object.
- Reference to the static NotificationCenter (Singleton).
Instance methods
addObserver
Registers inObserver to receive notifications with the name inNotificationName and/or containing inNotificationObject. When a notification of name inNotificationName containing the object inNotificationObject is posted, inObserver's method inMethod is called with a Notification as the argument. If inNotificationName is undefined, the notification center notifies the observer of all notifications with an object matching inNotificationObject. If inNotificationObject is nil, the notification center notifies the observer of all notifications with the name inNotificationName. inObserver may not be undefined.
-
This example adds an observer to the current object ('this'), to let method 'doSomething' be called as soon as the notification named 'PanelWillUpdateNotification' is posted:
NotificationCenter.getDefaultCenter().addObserver(this, doSomething, "PanelWillUpdateNotification");
In the following example, we don't specify a notification name:NotificationCenter.getDefaultCenter().addObserver(this, "updatePanel", null, myPanel);
Now all notifications with 'myPanel' as object argument will be passed (we'll pass the current time as data):NotificationCenter.getDefaultCenter().post(null, myPanel, getTimer());
getCheckOnAdding
getNotifyErrors
post
Creates a Notification instance and passes this to the observers associated through inNotificationName or inNotificationObject.
-
This example finds all observers that are associated with the notification name 'ButtonDidUpdateNotification', and passes them a Notification object with data "My message".
NotificationCenter.getDefaultCenter().post("ButtonDidUpdateNotification", null, "My message");
The following example sends a notification to the observers that are associated with identifier object anIdentifier. Note that the name of the notification is not important when you pass an object - it may be an empty string. The object is associated with the observer in addObserver (the notification center notifies the observer of all notifications with an object matching inNotificationObject).var anIdentifier:Object = this; NotificationCenter.getDefaultCenter().post(null, anIdentifier, "My message");
removeObserver
Removes inObserver as the observer of notifications with the name inNotificationName and object inNotificationObject from the object. inObserver may not be nil. Be sure to invoke this method before removing the observer object or any object specified in addObserver. If inNotificationName is nil, inObserver is removed as an observer of all notifications containing inNotificationObject. If inNotificationObject is nil, inObserver is removed as an observer of inNotificationName containing any object.
-
To unregister someObserver from all notifications it had previously registered for, you would send this method:
NotificationCenter.getDefaultCenter().removeObserver(someObserver);
To unregister the observer from the particular notification theNotificationName, use:NotificationCenter.getDefaultCenter().removeObserver(someObserver, theNotificationName);
setCheckOnAdding
Set checking for doubles when calling addObserver. If true, each entry is checked if it is already in the list. For performance, checking is off by default.