Paket | com.adobe.gravity.utility.async |
Sınıf | public class Token |
Miras Alma | Token Object |
Uygular | IToken |
Dil Sürümü: | ActionScript 3.0 |
Ürün Sürümü: | Adobe Digital Enterprise Platform Experience Services - Client Component Framework 10 |
Çalışma Zamanı Sürümleri: | AIR 1.1, Flash Player 9 |
Success handlers take an arbitrary number of parameters. The number and type of the parameters depend on the API that returns the token; the API documentation will generally indicate what to expect. Fault handlers must take a single parameter of type Error.
Yöntem | Tanımlayan: | ||
---|---|---|---|
Token()
Constructor. | Token | ||
Add a handler to be called if the operation fails. | Token | ||
Add a handler to be called if the operation succeeds. | Token | ||
Call all the fault handlers with the provided error object. | Token | ||
Call all the fault handlers with an Error created from the provided ErrorEvent object. | Token | ||
Call all the success handlers with the provided parameters. | Token | ||
Bir nesnenin belirli bir özelliğinin tanımlı olup olmadığını gösterir. | Object | ||
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 | ||
Remove a fault handler. | Token | ||
Remove a success handler. | Token | ||
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 |
Token | () | Yapıcı |
public function Token()
Dil Sürümü: | ActionScript 3.0 |
Ürün Sürümü: | Adobe Digital Enterprise Platform Experience Services - Client Component Framework 10 |
Çalışma Zamanı Sürümleri: | AIR 1.1, Flash Player 9 |
Constructor.
addFaultHandler | () | yöntem |
public function addFaultHandler(handler:Function, weakReference:Boolean = false):void
Dil Sürümü: | ActionScript 3.0 |
Ürün Sürümü: | Adobe Digital Enterprise Platform Experience Services - Client Component Framework 10 |
Çalışma Zamanı Sürümleri: | AIR 1.1, Flash Player 9 |
Add a handler to be called if the operation fails.
Parametreler
handler:Function — A function to be called if the operation fails.
| |
weakReference:Boolean (default = false ) — Use a weak reference to hold onto the handler.
|
addSuccessHandler | () | yöntem |
public function addSuccessHandler(handler:Function, weakReference:Boolean = false):void
Dil Sürümü: | ActionScript 3.0 |
Ürün Sürümü: | Adobe Digital Enterprise Platform Experience Services - Client Component Framework 10 |
Çalışma Zamanı Sürümleri: | AIR 1.1, Flash Player 9 |
Add a handler to be called if the operation succeeds.
Parametreler
handler:Function — A function to be called if the operation succeeds.
| |
weakReference:Boolean (default = false ) — Use a weak reference to hold onto the handler.
|
callFaultHandlers | () | yöntem |
public function callFaultHandlers(error:Error):void
Dil Sürümü: | ActionScript 3.0 |
Ürün Sürümü: | Adobe Digital Enterprise Platform Experience Services - Client Component Framework 10 |
Çalışma Zamanı Sürümleri: | AIR 1.1, Flash Player 9 |
Call all the fault handlers with the provided error object.
Parametreler
error:Error — The error object.
|
callFaultHandlersViaErrorEvent | () | yöntem |
public function callFaultHandlersViaErrorEvent(errorEvent:ErrorEvent):void
Dil Sürümü: | ActionScript 3.0 |
Ürün Sürümü: | Adobe Digital Enterprise Platform Experience Services - Client Component Framework 10 |
Çalışma Zamanı Sürümleri: | AIR 1.1, Flash Player 9 |
Call all the fault handlers with an Error created from the provided ErrorEvent object. This is equivalent to
callFaultHandlers(new Error(errorEvent.text));
Parametreler
errorEvent:ErrorEvent — The error event.
|
callSuccessHandlers | () | yöntem |
public function callSuccessHandlers(... params):void
Dil Sürümü: | ActionScript 3.0 |
Ürün Sürümü: | Adobe Digital Enterprise Platform Experience Services - Client Component Framework 10 |
Çalışma Zamanı Sürümleri: | AIR 1.1, Flash Player 9 |
Call all the success handlers with the provided parameters.
Parametreler
... params — Zero or more parameters to be passed verbatim to any success handlers that have been added.
|
removeFaultHandler | () | yöntem |
public function removeFaultHandler(handler:Function):void
Dil Sürümü: | ActionScript 3.0 |
Ürün Sürümü: | Adobe Digital Enterprise Platform Experience Services - Client Component Framework 10 |
Çalışma Zamanı Sürümleri: | AIR 1.1, Flash Player 9 |
Remove a fault handler.
Parametreler
handler:Function — The handler to be removed.
|
removeSuccessHandler | () | yöntem |
public function removeSuccessHandler(handler:Function):void
Dil Sürümü: | ActionScript 3.0 |
Ürün Sürümü: | Adobe Digital Enterprise Platform Experience Services - Client Component Framework 10 |
Çalışma Zamanı Sürümleri: | AIR 1.1, Flash Player 9 |
Remove a success handler.
Parametreler
handler:Function — The handler to remove.
|
Tue Jun 12 2018, 01:09 PM Z