Paket | mx.rpc |
Sınıf | public dynamic class AsyncToken |
Miras Alma | AsyncToken EventDispatcher Object |
Alt Sınıflar | CacheToken, ItemReference, RCAToken |
Dil Sürümü: | ActionScript 3.0 |
Ürün Sürümü: | Flex 3 |
Çalışma Zamanı Sürümleri: | Flash Player 9, AIR 1.1 |
ResultEvent
and
FaultEvent
from the token
property.
Özellik | Tanımlayan: | ||
---|---|---|---|
constructor : Object
Belirli bir nesne örneği için sınıf nesnesine veya yapıcı işlevine bir başvuru. | Object | ||
message : IMessage [salt okunur]
Provides access to the associated message. | AsyncToken | ||
responders : Array [salt okunur]
An array of IResponder handlers that will be called when
the asynchronous request completes. | AsyncToken | ||
result : Object [salt okunur]
The result that was returned by the associated RPC call. | AsyncToken |
Yöntem | Tanımlayan: | ||
---|---|---|---|
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
EventDispatcher nesnesi olan bir olay dinleyici nesnesini, dinleyicinin bir olayın bildirimini alması için kaydeder. | EventDispatcher | ||
Adds a responder to an Array of responders. | AsyncToken | ||
Olay akışına bir olay gönderir. | EventDispatcher | ||
EventDispatcher nesnesinin belirli bir olay türü için kayıtlı dinleyicisi olup olmadığını kontrol eder. | EventDispatcher | ||
Bir nesnenin belirli bir özelliğinin tanımlı olup olmadığını gösterir. | Object | ||
Determines if this token has at least one mx.rpc.IResponder registered. | AsyncToken | ||
Object sınıfının bir örneğinin parametre olarak belirtilen nesnenin prototip zincirinde olup olmadığını gösterir. | Object | ||
Belirtilen özelliğin bulunup bulunmadığını ve numaralandırılabilir olup olmadığını gösterir. | Object | ||
EventDispatcher nesnesinden bir dinleyiciyi kaldırır. | EventDispatcher | ||
Dinamik bir özelliğin döngü işlemlerinde kullanılabilirliğini ayarlar. | Object | ||
Bu nesnenin, yerel ayara özel kurallara göre biçimlendirilmiş dize temsilini döndürür. | Object | ||
Belirtilen nesnenin dize olarak temsil edilen halini döndürür. | Object | ||
Belirtilen nesnenin temel değerini döndürür. | Object | ||
Bir olay dinleyicisinin bu EventDispatcher nesnesiyle mi, yoksa onun belirtilen olay türüne yönelik üst öğelerinden biriyle mi kayıtlı olduğunu kontrol eder. | EventDispatcher |
Olay | Özet | Tanımlayan: | ||
---|---|---|---|---|
[broadcast olayı] Flash Player veya AIR uygulaması işletim sistemi odağına gelip etkin olduğunda gönderilir. | EventDispatcher | |||
[broadcast olayı] Çalışan Flash Player veya AIR uygulaması sistem odağını kaybettiğinde ve etkin olmayan duruma geldiğinde gönderilir. | EventDispatcher | |||
Dispatched when a property of the channel set changes. | AsyncToken |
message | özellik |
responders | özellik |
responders:Array
[salt okunur] Dil Sürümü: | ActionScript 3.0 |
Ürün Sürümü: | Flex 3 |
Çalışma Zamanı Sürümleri: | 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.
Uygulama
public function get responders():Array
result | özellik |
result:Object
[salt okunur] Dil Sürümü: | ActionScript 3.0 |
Ürün Sürümü: | Flex 3 |
Çalışma Zamanı Sürümleri: | 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.
Bu özellik veri ciltleme kaynağı olarak kullanılabilir. Bu özellik değiştirildiğinde, propertyChange
olayını gönderir.
Uygulama
public function get result():Object
AsyncToken | () | Yapıcı |
public function AsyncToken(message:IMessage = null)
Dil Sürümü: | ActionScript 3.0 |
Ürün Sürümü: | Flex 3 |
Çalışma Zamanı Sürümleri: | Flash Player 9, AIR 1.1 |
Constructs an instance of the token with the specified message.
Parametrelermessage:IMessage (default = null ) — The message with which the token is associated.
|
addResponder | () | yöntem |
public function addResponder(responder:IResponder):void
Dil Sürümü: | ActionScript 3.0 |
Ürün Sürümü: | Flex 3 |
Çalışma Zamanı Sürümleri: | 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
.
Parametreler
responder:IResponder — A handler which will be called when the asynchronous request completes.
|
İlgili API Öğeleri
hasResponder | () | yöntem |
propertyChange | Olay |
mx.events.PropertyChangeEvent
özellik PropertyChangeEvent.type =
mx.events.PropertyChangeEvent.PROPERTY_CHANGE
Dil Sürümü: | ActionScript 3.0 |
Ürün Sürümü: | Flex 3 |
Çalışma Zamanı Sürümleri: | 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. |
Tue Jun 12 2018, 01:09 PM Z