Package puremvc :: Module interfaces :: Class INotification
[hide private]
[frames] | no frames]

Class INotification

source code

object --+
         |
        INotification
Known Subclasses:

The interface definition for a PureMVC Notification.

PureMVC does not rely upon underlying event models such as the one provided with Flash, and ActionScript 3 does not have an inherent event model.

The Observer Pattern as implemented within PureMVC exists to support event-driven communication between the application and the actors of the MVC triad.

Notifications are not meant to be a replacement for Events in Flex/Flash/AIR. Generally, IMediator implementors place event listeners on their view components, which they then handle in the usual way. This may lead to the broadcast of Notifications to trigger ICommands or to communicate with other IMediators. IProxy and ICommand instances communicate with each other and IMediators by broadcasting INotifications.

A key difference between Flash Events and PureMVC Notifications is that Events follow the 'Chain of Responsibility' pattern, 'bubbling' up the display hierarchy until some parent component handles the Event, while PureMVC Notifications follow a 'Publish/Subscribe' pattern. PureMVC classes need not be related to each other in a parent/child relationship in order to communicate with one another using Notifications.


See Also:
IView, IObserver
Instance Methods [hide private]
 
getName(self)
Get the name of the INotification instance.
source code
 
setBody(self, body)
Set the body of the INotification instance.
source code
 
getBody(self)
Get the body of the INotification instance.
source code
 
setType(self, type_)
Set the type of the INotification instance.
source code
 
getType(self)
Get the type of the INotification instance.
source code
 
str(self)
Get the string representation of the INotification instance
 
__repr__(self)
Get the string representation of the INotification instance
source code

Inherited from object: __delattr__, __format__, __getattribute__, __hash__, __init__, __new__, __reduce__, __reduce_ex__, __setattr__, __sizeof__, __str__, __subclasshook__

Properties [hide private]

Inherited from object: __class__

Method Details [hide private]

getName(self)

source code 

Get the name of the INotification instance. No setter, should be set by constructor only.

Raises NotImplemented if subclass does not implement this method.

setBody(self, body)

source code 

Set the body of the INotification instance.

Raises NotImplemented if subclass does not implement this method.

getBody(self)

source code 

Get the body of the INotification instance.

Raises NotImplemented if subclass does not implement this method.

setType(self, type_)

source code 

Set the type of the INotification instance.

Raises NotImplemented if subclass does not implement this method.

getType(self)

source code 

Get the type of the INotification instance.

Raises NotImplemented if subclass does not implement this method.

__repr__(self)
(Representation operator)

source code 

Get the string representation of the INotification instance

Overrides: object.__repr__