| Package | flash.system |
| Class | public final class WorkerState |
| Inheritance | WorkerState Object |
| Language Version: | ActionScript 3.0 |
| Runtime Versions: | Flash Player 11.4, AIR 3.4 |
state property. These values are the states
in a Worker object's lifecycle.
Related API Elements
Public Properties
Public Methods
Public Constants
| Constant | Defined By | ||
|---|---|---|---|
| NEW : String = "new" [static]
This state indicates that an object that represents the new worker has
been created, but the worker is not executing code. | WorkerState | ||
| RUNNING : String = "running" [static]
This state indicates that the worker has begun executing application code
and it has not been instructed to stop execution. | WorkerState | ||
| TERMINATED : String = "terminated" [static]
This state indicates that the worker has been stopped by code in another
worker calling this Worker object's terminate() method. | WorkerState | ||
Constant Detail
NEW | Constant |
public static const NEW:String = "new"| Language Version: | ActionScript 3.0 |
| Runtime Versions: | Flash Player 11.4, AIR 3.4 |
This state indicates that an object that represents the new worker has been created, but the worker is not executing code.
Related API Elements
RUNNING | Constant |
public static const RUNNING:String = "running"| Language Version: | ActionScript 3.0 |
| Runtime Versions: | Flash Player 11.4, AIR 3.4 |
This state indicates that the worker has begun executing application code and it has not been instructed to stop execution.
Related API Elements
TERMINATED | Constant |
public static const TERMINATED:String = "terminated"| Language Version: | ActionScript 3.0 |
| Runtime Versions: | Flash Player 11.4, AIR 3.4 |
This state indicates that the worker has been stopped by code in another
worker calling this Worker object's terminate() method.
Related API Elements
Thu Dec 6 2018, 01:12 PM -08:00
Hide Inherited Public Properties
Show Inherited Public Properties