| 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
| Property | Defined By | ||
|---|---|---|---|
![]() | constructor : Object
A reference to the class object or constructor function for a given object instance. | Object | |
Public Methods
| Method | Defined By | ||
|---|---|---|---|
![]() |
Indicates whether an object has a specified property defined. | Object | |
![]() |
Indicates whether an instance of the Object class is in the prototype chain of the object specified
as the parameter. | Object | |
![]() |
Indicates whether the specified property exists and is enumerable. | Object | |
![]() |
Sets the availability of a dynamic property for loop operations. | Object | |
![]() |
Returns the string representation of this object, formatted according to locale-specific conventions. | Object | |
![]() |
Returns the string representation of the specified object. | Object | |
![]() |
Returns the primitive value of the specified object. | Object | |
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 4 2014, 05:50 PM -08:00
