| Property | Defined By | ||
|---|---|---|---|
| isSelfManaging : Boolean
Determines whether the process is self managing or not. | IRunnable | ||
| percentage : Number [read-only]
Returns the percentage completion
| IRunnable | ||
| Method | Defined By | ||
|---|---|---|---|
run():void
Runs the smallest chunk of the process
| IRunnable | ||
runAndManage(allocation:int):void
Runs and manages the process over the given allocation
| IRunnable | ||
terminate():void
Terminates the process
| IRunnable | ||
| isSelfManaging | property |
isSelfManaging:BooleanDetermines whether the process is self managing or not. If it is, runAndManage gets called by the thread, otherwise, run is called.
public function get isSelfManaging():Boolean public function set isSelfManaging(value:Boolean):void| percentage | property |
percentage:Number [read-only] Returns the percentage completion
public function get percentage():Number| run | () | method |
public function run():voidRuns the smallest chunk of the process
| runAndManage | () | method |
public function runAndManage(allocation:int):voidRuns and manages the process over the given allocation
Parameters
allocation:int |
| terminate | () | method |
public function terminate():voidTerminates the process