Packageorg.springextensions.actionscript.core.task
SVN browsingITaskBlock.as
FisheyeITaskBlock.as
Interfacepublic interface ITaskBlock
SubinterfacesIForBlock, IIfElseBlock, IWhileBlock
ImplementorsAbstractTaskBlock

Describes an object that represents a block that can be continuously executed or interupted.



Documentation reference: tasks


Public Properties
 PropertyDefined by
  isClosed : Boolean
[read-only] If true no more ICommands can be added to the current ITaskBlock.
ITaskBlock
Public Methods
 MethodDefined by
  
Interupts the current ITaskBlock if its part of a loop construct.
ITaskBlock
  
Continues the current ITaskBlock if its part of a loop construct.
ITaskBlock
Property detail
isClosedproperty
isClosed:Boolean  [read-only]

If true no more ICommands can be added to the current ITaskBlock.

Implementation
    public function get isClosed():Boolean
Method detail
break_()method
public function break_():ITask

Interupts the current ITaskBlock if its part of a loop construct.

Returns
ITask — The current ITaskBlock's parent task;
continue_()method 
public function continue_():ITask

Continues the current ITaskBlock if its part of a loop construct.

Returns
ITask — The current ITaskBlock's parent task;