Pacchetto | com.adobe.livecycle.rca.token |
Classe | public class RCAToken |
Ereditarietà | RCAToken AsyncToken EventDispatcher Object |
Implementa | IAsyncToken |
Obsoleto da Review, Commenting, and Approval 10New Review, Commenting, and Approval APIs use mx.rpc.AsyncToken
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Blocco costitutivo Review, Commenting, and Approval 9.5 |
Versioni runtime: | Flash Player 9, Flash Player 10, AIR (unsupported) |
Proprietà pubbliche
Proprietà | Definito da | ||
---|---|---|---|
constructor : Object
Un riferimento all'oggetto classe o alla funzione di costruzione per una determinata istanza di oggetto. | Object | ||
message : IMessage [sola lettura]
Provides access to the associated message. | AsyncToken | ||
operationName : String [sola lettura]
Specifies the operation name. | RCAToken | ||
responders : Array [sola lettura]
An array of IResponder handlers that will be called when
the asynchronous request completes. | AsyncToken | ||
result : Object [sola lettura]
The result that was returned by the associated RPC call. | AsyncToken |
Metodi pubblici
Metodo | Definito da | ||
---|---|---|---|
Constructs a RCAToken. | RCAToken | ||
addEventListener(type:String, listener:Function, useCapture:Boolean = false, priority:int = 0, useWeakReference:Boolean = false):void
Registra un oggetto listener di eventi con un oggetto EventDispatcher, in modo che il listener riceva la notifica di un evento. | EventDispatcher | ||
Adds a fault handler to this token. | RCAToken | ||
Adds success and fault handlers to this token. | RCAToken | ||
[override]
Adds a responder to this token. | RCAToken | ||
Adds a success handler to this token. | RCAToken | ||
Calls all fault handlers that are associated with this token. | RCAToken | ||
Calls all success handlers that are associated with this token. | RCAToken | ||
Invia un evento nel flusso di eventi. | EventDispatcher | ||
Verifica se per l'oggetto EventDispatcher sono presenti listener registrati per un tipo specifico di evento. | EventDispatcher | ||
Indica se per un oggetto è definita una proprietà specifica. | Object | ||
Determines if this token has at least one mx.rpc.IResponder registered. | AsyncToken | ||
Indica se un'istanza della classe Object si trova nella catena di prototipi dell'oggetto specificato come parametro. | Object | ||
Indica se la proprietà specificata esiste ed è enumerabile. | Object | ||
Rimuove un listener dall'oggetto EventDispatcher. | EventDispatcher | ||
Imposta la disponibilità di una proprietà dinamica per le operazioni cicliche. | Object | ||
Restituisce la rappresentazione in formato stringa di questo oggetto, formattato in base alle convenzioni specifiche per le versioni localizzate. | Object | ||
Restituisce la rappresentazione in formato stringa dell'oggetto specificato. | Object | ||
Restituisce il valore di base dell'oggetto specificato. | Object | ||
Verifica se un listener di eventi è registrato con questo oggetto EventDispatcher o qualsiasi suo antenato per il tipo di evento specificato. | EventDispatcher |
Eventi
Descrizione delle proprietà
operationName | proprietà |
operationName:String
[sola lettura] Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Blocco costitutivo Review, Commenting, and Approval 9.5 |
Versioni runtime: | Flash Player 9, Flash Player 10, AIR (unsupported) |
Specifies the operation name.
Implementazione
public function get operationName():String
Descrizione della funzione di costruzione
RCAToken | () | Funzione di costruzione |
public function RCAToken(operationName:String = "", message:IMessage = null)
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Blocco costitutivo Review, Commenting, and Approval 9.5 |
Versioni runtime: | Flash Player 9, Flash Player 10, AIR (unsupported) |
Constructs a RCAToken
.
operationName:String (default = " ") — Name of the operation associated with the token. Used for debugging.
| |
message:IMessage (default = null ) — The message that the token is associated with.
|
Descrizione dei metodi
addFaultHandler | () | metodo |
public function addFaultHandler(fault:Function):void
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Blocco costitutivo Review, Commenting, and Approval 9.5 |
Versioni runtime: | Flash Player 9, Flash Player 10, AIR (unsupported) |
Adds a fault handler to this token.
Parametri
fault:Function — The function to call on fault. Can be null, but ignoring a possible fault is not recommended unless
you are certain the call cannot fail. The expected function signature is function(fault:Object) .
|
addHandlers | () | metodo |
public function addHandlers(success:Function, fault:Function):void
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Blocco costitutivo Review, Commenting, and Approval 9.5 |
Versioni runtime: | Flash Player 9, Flash Player 10, AIR (unsupported) |
Adds success and fault handlers to this token. Adding handlers is more convenient than explicitly calling addSuccessHandler()
and addFaultHandler() after receiving an IToken. Instead, you can use
asyncMethod().addHandlers(function(event:ResultEvent){}, function(event:FaultEvent){});
Parametri
success:Function — The function to call on success. Can be null, but in most cases, you want to call a function on success.
The expected function signature is function(data:Object) .
| |
fault:Function — The function to call on fault. Can be null, but ignoring a fault is not recommended unless
you are certain that the call cannot fail. The expected function signature is function(fault:Object) .
|
addResponder | () | metodo |
override public function addResponder(responder:IResponder):void
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Blocco costitutivo Review, Commenting, and Approval 9.5 |
Versioni runtime: | Flash Player 9, Flash Player 10, AIR (unsupported) |
Adds a responder to this token.
Parametri
responder:IResponder — The responder to add. This responder defines a result or success handler to call on success, and a fault handler to call on fault.
|
addSuccessHandler | () | metodo |
public function addSuccessHandler(success:Function):void
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Blocco costitutivo Review, Commenting, and Approval 9.5 |
Versioni runtime: | Flash Player 9, Flash Player 10, AIR (unsupported) |
Adds a success handler to this token.
Parametri
success:Function — The function to call on success. Can be null, but in most cases, you want to call a function on success.
The expected function signature is function(data:Object) .
|
callFaultHandlers | () | metodo |
public function callFaultHandlers(fault:Object):void
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Blocco costitutivo Review, Commenting, and Approval 9.5 |
Versioni runtime: | Flash Player 9, Flash Player 10, AIR (unsupported) |
Calls all fault handlers that are associated with this token.
Parametri
fault:Object — The fault to pass to each fault handler invocation.
|
callSuccessHandlers | () | metodo |
public function callSuccessHandlers(data:Object):void
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Blocco costitutivo Review, Commenting, and Approval 9.5 |
Versioni runtime: | Flash Player 9, Flash Player 10, AIR (unsupported) |
Calls all success handlers that are associated with this token.
Parametri
data:Object — The data to pass to each success handler invocation.
|
Tue Jun 12 2018, 02:44 PM Z