Package | com.adobe.gravity.utility.async |
Classe | public class Deferred |
Héritage | Deferred Object |
Version du langage: | ActionScript 3.0 |
Version du produit: | Adobe Digital Enterprise Platform Experience Services - Client Component Framework 10 |
Versions du moteur d’exécution: | AIR 1.1, Flash Player 9 |
Propriétés publiques
Propriété | Défini par | ||
---|---|---|---|
constructor : Object
Référence à l’objet de classe ou à la fonction constructeur d’une occurrence donnée d’un objet. | Object | ||
timeLimitInMilliseconds : int = 500 [statique]
The time limit for processing handlers. | Deferred |
Méthodes publiques
Méthode | Défini par | ||
---|---|---|---|
[statique]
Execute a function "soon". | Deferred | ||
Indique si la propriété spécifiée d’un objet est définie. | Object | ||
Indique si une occurrence de la classe Object figure dans la chaîne de prototype de l’objet spécifié en tant que paramètre. | Object | ||
Indique si la propriété spécifiée existe et est énumérable. | Object | ||
Définit la disponibilité d’une propriété dynamique pour les opérations en boucle. | Object | ||
Renvoie la représentation de chaîne de cet objet, formatée selon les paramètres régionaux en vigueur. | Object | ||
Renvoie la représentation sous forme de chaîne de l’objet spécifié. | Object | ||
Renvoie la valeur primitive de l’objet spécifié. | Object |
Détails de la propriété
timeLimitInMilliseconds | propriété |
public static var timeLimitInMilliseconds:int = 500
Version du langage: | ActionScript 3.0 |
Version du produit: | Adobe Digital Enterprise Platform Experience Services - Client Component Framework 10 |
Versions du moteur d’exécution: | 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.
Détails de la méthode
doLater | () | méthode |
public static function doLater(deferredFunction:Function):void
Version du langage: | ActionScript 3.0 |
Version du produit: | Adobe Digital Enterprise Platform Experience Services - Client Component Framework 10 |
Versions du moteur d’exécution: | 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).
Paramètres
deferredFunction:Function — The function to be executed later. The function will be invoked with no parameters.
|
Tue Jun 12 2018, 09:30 AM Z