Packageorg.restfulx.commands
Interfacepublic interface ICommand

As per the command design pattern, commands are expected to implement a simple interface with execute() function defined. If you've used Cairngorm, et al. before this should sound pretty familiar. If not, you can read up on Command pattern in the classic GoF Design Patterns book.



Public Methods
 MethodDefined by
  
Commands must expose an execute method with the following signature.
ICommand
Method detail
execute()method
public function execute(event:CommandExecutionEvent):void

Commands must expose an execute method with the following signature.

Parameters
event:CommandExecutionEvent — RxEvent instance that will be passed to the command.