Packageorg.spicefactory.lib.command
Interfacepublic interface Command
Implementors DelegateCommand

Represents a single command. The base interface for all commands. If only this interface is implemented by a command, it is treated as a synchronous command. For additional features like asynchronous execution, cancellation or suspension, several subinterfaces are available.

This interface is used by all internal command executors and builders. But application classes do not have to implement this interface when they use the Light Command functionality where execution is based on naming conventions instead.



Public Methods
 MethodDefined By
  
execute():void
Executes the command.
Command
Method Detail
execute()method
public function execute():void

Executes the command.