Package | com.adobe.gravity.utility.async |
Class | public class Deferred |
Inheritance | Deferred Object |
Language Version: | ActionScript 3.0 |
Product Version: | Adobe Digital Enterprise Platform Experience Services - Client Component Framework 10 |
Runtime Versions: | AIR 1.1, Flash Player 9 |
Public Properties
Property | Defined By | ||
---|---|---|---|
constructor : Object
A reference to the class object or constructor function for a given object instance. | Object | ||
prototype : Object [static]
A reference to the prototype object of a class or function object. | Object | ||
timeLimitInMilliseconds : int = 500 [static]
The time limit for processing handlers. | Deferred |
Public Methods
Method | Defined By | ||
---|---|---|---|
[static]
Execute a function "soon". | Deferred | ||
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 |
Property Detail
timeLimitInMilliseconds | property |
public static var timeLimitInMilliseconds:int = 500
Language Version: | ActionScript 3.0 |
Product Version: | Adobe Digital Enterprise Platform Experience Services - Client Component Framework 10 |
Runtime Versions: | AIR 1.1, Flash Player 9 |
The time limit for processing handlers. Once the time spent processing handlers in a single frame exceeds this limit, the remaining handlers to be processed will be deferred to the next frame.
Method Detail
doLater | () | method |
public static function doLater(deferredFunction:Function):void
Language Version: | ActionScript 3.0 |
Product Version: | Adobe Digital Enterprise Platform Experience Services - Client Component Framework 10 |
Runtime Versions: | AIR 1.1, Flash Player 9 |
Execute a function "soon". The function will be placed in a queue to be executed when the current stack frame exits (note that other events may prevent the function from being executed on exactly the next stack frame, but it will be executed as soon as possible).
Parameters
deferredFunction:Function — The function to be executed later. The function will be invoked with no parameters.
|
Mon Nov 28 2011, 06:48 AM -08:00