Packageorg.spicefactory.lib.command.adapter
Interfacepublic interface CommandAdapter extends CommandExecutor, SuspendableCommand, CancellableCommand
Implementors LightCommandAdapter

Represents an adapter for a command type that does not implement one of the command interfaces.



Public Properties
 PropertyDefined By
 Inheritedactive : Boolean
[read-only] Indicates whether this command is currently executing.
AsyncCommand
 Inheritedcancellable : Boolean
[read-only] Indicates whether this executor can be cancelled.
CommandExecutor
 Inheritedsuspendable : Boolean
[read-only] Indicates whether this executor can be suspended.
CommandExecutor
 Inheritedsuspended : Boolean
[read-only] Indicates whether this command is currently suspended.
SuspendableCommand
  target : Object
[read-only] The target executed by this adapter.
CommandAdapter
Public Methods
 MethodDefined By
 Inherited
cancel():void
Cancels the command.
CancellableCommand
 Inherited
prepare(lifecycle:CommandLifecycle, data:CommandData):void
Method that may be called by frameworks before executing this command to hook into the lifecycle and data handling of this executor.
CommandExecutor
 Inherited
resume():void
Resumes the command.
SuspendableCommand
 Inherited
suspend():void
Suspends the command.
SuspendableCommand
Property Detail
targetproperty
target:Object  [read-only]

The target executed by this adapter.


Implementation
    public function get target():Object