Packageorg.springextensions.actionscript.core.task
SVN browsingITaskFlowControl.as
FisheyeITaskFlowControl.as
Interfacepublic interface ITaskFlowControl extends flash.events.IEventDispatcher
ImplementorsTaskFlowControlCommand

Describes an object that can influence the flow of control within a task.



Documentation reference: tasks


Public Properties
 PropertyDefined by
  kind : TaskFlowControlKind
[read-only] An TaskFlowControlKind instance that determines the kind of flow change the current ITaskFlowControl can establish.
ITaskFlowControl
Events
 EventSummaryDefined by
   Dispatched when the current ITaskFlowControl wants to break out of a loop construct.ITaskFlowControl
   Dispatched when the current ITaskFlowControl wants to continue a loop construct.ITaskFlowControl
   Dispatched when the current ITaskFlowControl wants to exit a block construct completely.ITaskFlowControl
Property detail
kindproperty
kind:TaskFlowControlKind  [read-only]

An TaskFlowControlKind instance that determines the kind of flow change the current ITaskFlowControl can establish.

Implementation
    public function get kind():TaskFlowControlKind
Event detail
breakevent 
Event object type: org.springextensions.actionscript.core.task.event.TaskFlowControlEvent

Dispatched when the current ITaskFlowControl wants to break out of a loop construct.

continueevent  
Event object type: org.springextensions.actionscript.core.task.event.TaskFlowControlEvent

Dispatched when the current ITaskFlowControl wants to continue a loop construct.

exitevent  
Event object type: org.springextensions.actionscript.core.task.event.TaskFlowControlEvent

Dispatched when the current ITaskFlowControl wants to exit a block construct completely.