Package | lc.foundation.util |
Classe | public class Token |
Héritage | Token Object |
Sous-classes | CollectionToken, ObjectToken |
Version du langage: | ActionScript 3.0 |
Version du produit: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
Versions du moteur d’exécution: | AIR (unsupported), Flash Player 9, Flash Player 10 |
Token
class provides a mechanism to specify handlers for asynchronous calls.
Usually, result handlers take a single parameter of type LiveCycleEvent
(or a subclass)
and fault handlers take a single parameter of type LiveCycleFaultEvent
(or a subclass).
For information on using this component to customize Workspace, see Customizing the Adobe Digital Enterprise Platform Document Services - Workspace User Interface .
Eléments de l’API associés
Propriétés publiques
Méthodes publiques
Méthode | Défini par | ||
---|---|---|---|
Adds a fault handler for this asynchronous invocation. | Token | ||
Adds a result and fault handler for this asynchronous invocation. | Token | ||
Adds an object to handle the result or failure for an asynchronous invocation. | Token | ||
Adds a result handler for this asynchronous invocation. | Token | ||
Calls all the fault handlers. | Token | ||
Calls all the result handlers. | 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 | ||
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 méthode
addFaultHandler | () | méthode |
public function addFaultHandler(handler:Function):void
Version du langage: | ActionScript 3.0 |
Version du produit: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
Versions du moteur d’exécution: | AIR (unsupported), Flash Player 9, Flash Player 10 |
Adds a fault handler for this asynchronous invocation.
Paramètres
handler:Function — Specifies a function that is called when the asynchronous call fails.
|
addHandlers | () | méthode |
public function addHandlers(resultHandler:Function, faultHandler:Function):void
Version du langage: | ActionScript 3.0 |
Version du produit: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
Versions du moteur d’exécution: | AIR (unsupported), Flash Player 9, Flash Player 10 |
Adds a result and fault handler for this asynchronous invocation.
Paramètres
resultHandler:Function — Specifies the function that is called when the asynchronous call completes.
| |
faultHandler:Function — Specifies athefunction that is called when the asynchronous call fails.
|
addResponder | () | méthode |
public function addResponder(responder:IResponder):void
Version du langage: | ActionScript 3.0 |
Version du produit: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
Versions du moteur d’exécution: | AIR (unsupported), Flash Player 9, Flash Player 10 |
Adds an object to handle the result or failure for an asynchronous invocation.
Paramètres
responder:IResponder — Specifies the mx.rpc.IResponder interface implementation to handle
the asynchronous result or failure.
|
addResultHandler | () | méthode |
public function addResultHandler(handler:Function):void
Version du langage: | ActionScript 3.0 |
Version du produit: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
Versions du moteur d’exécution: | AIR (unsupported), Flash Player 9, Flash Player 10 |
Adds a result handler for this asynchronous invocation.
Paramètres
handler:Function — Specifies a function that is called when the asynchronous call completes.
|
callFaultHandlers | () | méthode |
public function callFaultHandlers(info:Object):void
Version du langage: | ActionScript 3.0 |
Version du produit: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
Versions du moteur d’exécution: | AIR (unsupported), Flash Player 9, Flash Player 10 |
Calls all the fault handlers.
Paramètres
info:Object — Specifies the information passed to all the fault handlers.
|
callResultHandlers | () | méthode |
public function callResultHandlers(data:Object):void
Version du langage: | ActionScript 3.0 |
Version du produit: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
Versions du moteur d’exécution: | AIR (unsupported), Flash Player 9, Flash Player 10 |
Calls all the result handlers.
Paramètres
data:Object — Specifies the data passed to all the result handlers.
|
Tue Jun 12 2018, 09:30 AM Z