Packageorg.puremvc.as3.multicore.interfaces
Interfacepublic interface ICommand extends INotifier
ImplementorsMacroCommand, SimpleCommand

The interface definition for a PureMVC Command.

See also

INotification


Public Methods
 MethodDefined by
  
execute(notification:INotification):void
Execute the ICommand's logic to handle a given INotification.
ICommand
 Inherited
initializeNotifier(key:String):void
Initialize this INotifier instance.
INotifier
 Inherited
sendNotification(notificationName:String, body:Object = null, type:String = null):void
Send a INotification.
INotifier
Method detail
execute()method
public function execute(notification:INotification):void

Execute the ICommand's logic to handle a given INotification.

Parameters
notification:INotification — an INotification to handle.