Pacote | com.adobe.livecycle.rca.token |
Classe | public class RCAToken |
Herança | RCAToken AsyncToken EventDispatcher Object |
Implementações | IAsyncToken |
Obsoleto desde Review, Commenting, and Approval 10New Review, Commenting, and Approval APIs use mx.rpc.AsyncToken
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Review, Commenting, and Approval Building Block 9.5 |
Versões de runtime: | Flash Player 9, Flash Player 10, AIR (unsupported) |
Propriedades públicas
Propriedade | Definido por | ||
---|---|---|---|
constructor : Object
Uma referência ao objeto de classe ou à função de construtor de uma determinada ocorrência de objeto. | Object | ||
message : IMessage [somente leitura]
Provides access to the associated message. | AsyncToken | ||
operationName : String [somente leitura]
Specifies the operation name. | RCAToken | ||
responders : Array [somente leitura]
An array of IResponder handlers that will be called when
the asynchronous request completes. | AsyncToken | ||
result : Object [somente leitura]
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 um objeto de ouvinte de evento em um objeto EventDispatcher, de forma que o ouvinte receba a notificação de um evento. | EventDispatcher | ||
Adds a fault handler to this token. | RCAToken | ||
Adds success and fault handlers to this token. | RCAToken | ||
[substituir]
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 | ||
Envia um evento para o fluxo de eventos. | EventDispatcher | ||
Verifica se o objeto EventDispatcher tem ouvintes registrados para um tipo específico de evento. | EventDispatcher | ||
Indica se um objeto tem uma propriedade especificada definida. | Object | ||
Determines if this token has at least one mx.rpc.IResponder registered. | AsyncToken | ||
Indica se uma ocorrência da classe Object está na cadeia de protótipos do objeto especificado como o parâmetro. | Object | ||
Indica se a propriedade especificada existe e é enumerável. | Object | ||
Remove um ouvinte do objeto EventDispatcher. | EventDispatcher | ||
Define a disponibilidade de uma propriedade dinâmica para operações de repetição. | Object | ||
Retorna a representação da string deste objeto, formatado segundo as convenções específicas para a localidade. | Object | ||
Retorna a representação de string do objeto especificado. | Object | ||
Retorna o valor primitivo do objeto especificado. | Object | ||
Verifica se um ouvinte de evento está registrado nesse objeto EventDispatcher ou em qualquer um de seus ancestrais para o tipo de evento especificado. | EventDispatcher |
Eventos
Detalhes da propriedade
operationName | propriedade |
operationName:String
[somente leitura] Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Review, Commenting, and Approval Building Block 9.5 |
Versões de runtime: | Flash Player 9, Flash Player 10, AIR (unsupported) |
Specifies the operation name.
Implementação
public function get operationName():String
Detalhes do construtor
RCAToken | () | Construtor |
public function RCAToken(operationName:String = "", message:IMessage = null)
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Review, Commenting, and Approval Building Block 9.5 |
Versões de 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.
|
Detalhes do método
addFaultHandler | () | método |
public function addFaultHandler(fault:Function):void
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Review, Commenting, and Approval Building Block 9.5 |
Versões de runtime: | 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
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Review, Commenting, and Approval Building Block 9.5 |
Versões de 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){});
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
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Review, Commenting, and Approval Building Block 9.5 |
Versões de runtime: | 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
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Review, Commenting, and Approval Building Block 9.5 |
Versões de runtime: | 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
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Review, Commenting, and Approval Building Block 9.5 |
Versões de runtime: | 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
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Review, Commenting, and Approval Building Block 9.5 |
Versões de runtime: | 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.
|
Wed Jun 13 2018, 11:10 AM Z