Package | com.adobe.gravity.utility.async |
Classe | public class Token |
Héritage | Token Object |
Implémente | IToken |
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 |
Success handlers take an arbitrary number of parameters. The number and type of the parameters depend on the API that returns the token; the API documentation will generally indicate what to expect. Fault handlers must take a single parameter of type Error.
Méthode | Défini par | ||
---|---|---|---|
Token()
Constructor. | Token | ||
Add a handler to be called if the operation fails. | Token | ||
Add a handler to be called if the operation succeeds. | Token | ||
Call all the fault handlers with the provided error object. | Token | ||
Call all the fault handlers with an Error created from the provided ErrorEvent object. | Token | ||
Call all the success handlers with the provided parameters. | Token | ||
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 | ||
Remove a fault handler. | Token | ||
Remove a success handler. | Token | ||
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 |
Token | () | Constructeur |
public function Token()
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 |
Constructor.
addFaultHandler | () | méthode |
public function addFaultHandler(handler:Function, weakReference:Boolean = false):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 |
Add a handler to be called if the operation fails.
Paramètres
handler:Function — A function to be called if the operation fails.
| |
weakReference:Boolean (default = false ) — Use a weak reference to hold onto the handler.
|
addSuccessHandler | () | méthode |
public function addSuccessHandler(handler:Function, weakReference:Boolean = false):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 |
Add a handler to be called if the operation succeeds.
Paramètres
handler:Function — A function to be called if the operation succeeds.
| |
weakReference:Boolean (default = false ) — Use a weak reference to hold onto the handler.
|
callFaultHandlers | () | méthode |
public function callFaultHandlers(error:Error):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 |
Call all the fault handlers with the provided error object.
Paramètres
error:Error — The error object.
|
callFaultHandlersViaErrorEvent | () | méthode |
public function callFaultHandlersViaErrorEvent(errorEvent:ErrorEvent):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 |
Call all the fault handlers with an Error created from the provided ErrorEvent object. This is equivalent to
callFaultHandlers(new Error(errorEvent.text));
Paramètres
errorEvent:ErrorEvent — The error event.
|
callSuccessHandlers | () | méthode |
public function callSuccessHandlers(... params):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 |
Call all the success handlers with the provided parameters.
Paramètres
... params — Zero or more parameters to be passed verbatim to any success handlers that have been added.
|
removeFaultHandler | () | méthode |
public function removeFaultHandler(handler: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 |
Remove a fault handler.
Paramètres
handler:Function — The handler to be removed.
|
removeSuccessHandler | () | méthode |
public function removeSuccessHandler(handler: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 |
Remove a success handler.
Paramètres
handler:Function — The handler to remove.
|
Tue Jun 12 2018, 09:30 AM Z