| Package | org.puremvc.as3.multicore.interfaces |
| Interface | public interface ICommand extends INotifier |
| Implementors | MacroCommand, SimpleCommand |
See also
| Method | Defined by | ||
|---|---|---|---|
|
execute(notification:INotification):void
Execute the
ICommand's logic to handle a given INotification. | ICommand | ||
![]() |
initializeNotifier(key:String):void
Initialize this INotifier instance.
| INotifier | |
![]() |
sendNotification(notificationName:String, body:Object = null, type:String = null):void
Send a
INotification. | INotifier | |
| execute | () | method |
public function execute(notification:INotification):void
Execute the ICommand's logic to handle a given INotification.
notification:INotification — an INotification to handle.
|