Pacote | mx.rpc |
Classe | public dynamic class AsyncToken |
Herança | AsyncToken EventDispatcher Object |
Subclasses | CacheToken, ItemReference, RCAToken |
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Flex 3 |
Versões de runtime: | Flash Player 9, AIR 1.1 |
ResultEvent
and
FaultEvent
from the token
property.
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 | ||
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étodo | Definido por | ||
---|---|---|---|
AsyncToken(message:IMessage = null)
Constructs an instance of the token with the specified message. | AsyncToken | ||
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 responder to an Array of responders. | AsyncToken | ||
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 |
Evento | Resumo | Definido por | ||
---|---|---|---|---|
[transmissão de evento] Despachado quando o Flash Player ou o aplicativo do AIR ganha o foco do sistema operacional e está se tornando inativo. | EventDispatcher | |||
[transmissão de evento] Despachado quando o Flash Player ou o aplicativo do AIR perde o foco do sistema operacional e está se tornando inativo. | EventDispatcher | |||
Dispatched when a property of the channel set changes. | AsyncToken |
message | propriedade |
responders | propriedade |
responders:Array
[somente leitura] Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Flex 3 |
Versões de runtime: | Flash Player 9, AIR 1.1 |
An array of IResponder handlers that will be called when
the asynchronous request completes.
Eaxh responder assigned to the token will have its result
or fault
function called passing in the
matching event before the operation or service dispatches the
event itself.
A developer can prevent the service from subsequently dispatching the
event by calling event.preventDefault()
.
Note that this will not prevent the service or operation's
result
property from being assigned.
Implementação
public function get responders():Array
result | propriedade |
result:Object
[somente leitura] Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Flex 3 |
Versões de runtime: | Flash Player 9, AIR 1.1 |
The result that was returned by the associated RPC call. Once the result property on the token has been assigned it will be strictly equal to the result property on the associated ResultEvent.
Essa propriedade pode ser usada como a origem para o vínculo de dados. Quando essa propriedade é modificada, ela despacha o evento propertyChange
.
Implementação
public function get result():Object
AsyncToken | () | Construtor |
public function AsyncToken(message:IMessage = null)
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Flex 3 |
Versões de runtime: | Flash Player 9, AIR 1.1 |
Constructs an instance of the token with the specified message.
Parâmetrosmessage:IMessage (default = null ) — The message with which the token is associated.
|
addResponder | () | método |
public function addResponder(responder:IResponder):void
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Flex 3 |
Versões de runtime: | Flash Player 9, AIR 1.1 |
Adds a responder to an Array of responders.
The object assigned to the responder parameter must implement
mx.rpc.IResponder
.
Parâmetros
responder:IResponder — A handler which will be called when the asynchronous request completes.
|
Elementos da API relacionados
hasResponder | () | método |
propertyChange | Evento |
mx.events.PropertyChangeEvent
propriedade PropertyChangeEvent.type =
mx.events.PropertyChangeEvent.PROPERTY_CHANGE
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Flex 3 |
Versões de runtime: | Flash Player 9, AIR 1.1 |
Dispatched when a property of the channel set changes.
ThePropertyChangeEvent.PROPERTY_CHANGE
constant defines the value of the
type
property of the event object for a PropertyChange
event.
The properties of the event object have the following values:
Property | Value |
---|---|
bubbles | Determined by the constructor; defaults to false. |
cancelable | Determined by the constructor; defaults to false. |
kind | The kind of change; PropertyChangeEventKind.UPDATE or PropertyChangeEventKind.DELETE. |
oldValue | The original property value. |
newValue | The new property value, if any. |
property | The property that changed. |
source | The object that contains the property that changed. |
currentTarget | The Object that defines the
event listener that handles the event. For example, if you use
myButton.addEventListener() to register an event listener,
myButton is the value of the currentTarget . |
target | The Object that dispatched the event;
it is not always the Object listening for the event.
Use the currentTarget property to always access the
Object listening for the event. |
Wed Jun 13 2018, 11:10 AM Z