Paquete | com.adobe.livecycle.rca.token |
Clase | public class RCAToken |
Herencia | RCAToken AsyncToken EventDispatcher Object |
Implementa | IAsyncToken |
Desfasado desde Review, Commenting, and Approval 10New Review, Commenting, and Approval APIs use mx.rpc.AsyncToken
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Bloque de construcción Review, Commenting, and Approval 9.5 |
Versiones de motor de ejecución: | Flash Player 9, Flash Player 10, AIR (unsupported) |
Propiedades públicas
Propiedad | Definido por | ||
---|---|---|---|
constructor : Object
Una referencia a la clase de objeto o función constructora para una instancia de objeto determinada. | Object | ||
message : IMessage [solo lectura]
Provides access to the associated message. | AsyncToken | ||
operationName : String [solo lectura]
Specifies the operation name. | RCAToken | ||
responders : Array [solo lectura]
An array of IResponder handlers that will be called when
the asynchronous request completes. | AsyncToken | ||
result : Object [solo lectura]
The result that was returned by the associated RPC call. | AsyncToken |
Métodos públicos
Método | Definido por | ||
---|---|---|---|
Constructs a RCAToken. | RCAToken | ||
addEventListener(type:String, listener:Function, useCapture:Boolean = false, priority:int = 0, useWeakReference:Boolean = false):void
Registra un objeto de detector de eventos con un objeto EventDispatcher, de modo que el detector reciba la notificación de 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 | ||
Distribuye un evento en el flujo del evento. | EventDispatcher | ||
Comprueba si el objeto EventDispatcher tiene detectores registrados para un tipo concreto de evento. | EventDispatcher | ||
Indica si un objeto tiene definida una propiedad especificada. | Object | ||
Determines if this token has at least one mx.rpc.IResponder registered. | AsyncToken | ||
Indica si hay una instancia de la clase Object en la cadena de prototipo del objeto especificado como parámetro. | Object | ||
Indica si existe la propiedad especificada y si es enumerable. | Object | ||
Elimina un detector del objeto EventDispatcher. | EventDispatcher | ||
Establece la disponibilidad de una propiedad dinámica para operaciones de bucle. | Object | ||
Devuelve la representación de cadena de este objeto, con formato según las convenciones específicas de configuración regional. | Object | ||
Devuelve la representación de cadena del objeto especificado. | Object | ||
Devuelve el valor simple del objeto especificado. | Object | ||
Comprueba si hay registrado un detector de eventos con este objeto EventDispatcher o con cualquiera de sus ascendientes para el tipo de evento concreto. | EventDispatcher |
Eventos
Información sobre propiedades
operationName | propiedad |
operationName:String
[solo lectura] Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Bloque de construcción Review, Commenting, and Approval 9.5 |
Versiones de motor de ejecución: | Flash Player 9, Flash Player 10, AIR (unsupported) |
Specifies the operation name.
Implementación
public function get operationName():String
Información sobre constructores
RCAToken | () | Información sobre |
public function RCAToken(operationName:String = "", message:IMessage = null)
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Bloque de construcción Review, Commenting, and Approval 9.5 |
Versiones de motor de ejecución: | 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.
|
Información sobre métodos
addFaultHandler | () | método |
public function addFaultHandler(fault:Function):void
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Bloque de construcción Review, Commenting, and Approval 9.5 |
Versiones de motor de ejecución: | Flash Player 9, Flash Player 10, AIR (unsupported) |
Adds a fault handler to this token.
Parámetros
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 | () | método |
public function addHandlers(success:Function, fault:Function):void
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Bloque de construcción Review, Commenting, and Approval 9.5 |
Versiones de motor de ejecución: | 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){});
Parámetros
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 | () | método |
override public function addResponder(responder:IResponder):void
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Bloque de construcción Review, Commenting, and Approval 9.5 |
Versiones de motor de ejecución: | Flash Player 9, Flash Player 10, AIR (unsupported) |
Adds a responder to this token.
Parámetros
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 | () | método |
public function addSuccessHandler(success:Function):void
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Bloque de construcción Review, Commenting, and Approval 9.5 |
Versiones de motor de ejecución: | Flash Player 9, Flash Player 10, AIR (unsupported) |
Adds a success handler to this token.
Parámetros
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 | () | método |
public function callFaultHandlers(fault:Object):void
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Bloque de construcción Review, Commenting, and Approval 9.5 |
Versiones de motor de ejecución: | Flash Player 9, Flash Player 10, AIR (unsupported) |
Calls all fault handlers that are associated with this token.
Parámetros
fault:Object — The fault to pass to each fault handler invocation.
|
callSuccessHandlers | () | método |
public function callSuccessHandlers(data:Object):void
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Bloque de construcción Review, Commenting, and Approval 9.5 |
Versiones de motor de ejecución: | Flash Player 9, Flash Player 10, AIR (unsupported) |
Calls all success handlers that are associated with this token.
Parámetros
data:Object — The data to pass to each success handler invocation.
|
Tue Jun 12 2018, 02:12 PM Z