| Package | org.restfulx.commands |
| Interface | public interface ICommand |
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.
| Method | Defined by | ||
|---|---|---|---|
|
execute(event:CommandExecutionEvent):void
Commands must expose an execute method with the following signature.
| ICommand | ||
| execute | () | method |
public function execute(event:CommandExecutionEvent):voidCommands must expose an execute method with the following signature.
Parametersevent:CommandExecutionEvent — RxEvent instance that will be passed to the command.
|