Пакет | com.adobe.gravity.utility.async |
Класс | public class Token |
Наследование | Token Object |
Реализует | IToken |
Язык версии: | ActionScript 3.0 |
Версия продукта: | Adobe Digital Enterprise Platform Experience Services - Client Component Framework 10 |
Версии среды выполнения: | 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.
Метод | Определено | ||
---|---|---|---|
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 | ||
Показывает, определено ли заданное свойство для объекта. | Object | ||
Показывает, есть ли экземпляр класса Object в цепи прототипов объекта, заданного в качестве параметра. | Object | ||
Показывает наличие заданного свойства и его перечисляемость. | Object | ||
Remove a fault handler. | Token | ||
Remove a success handler. | Token | ||
Задает доступность динамического свойства для операций цикла. | Object | ||
Возвращает строковое представление этого объекта, отформатированного в соответствии со стандартами, принятыми для данной локали. | Object | ||
Возвращает строковое представление заданного объекта. | Object | ||
Возвращает элементарное значение заданного объекта. | Object |
Token | () | Конструктор |
public function Token()
Язык версии: | ActionScript 3.0 |
Версия продукта: | Adobe Digital Enterprise Platform Experience Services - Client Component Framework 10 |
Версии среды выполнения: | AIR 1.1, Flash Player 9 |
Constructor.
addFaultHandler | () | метод |
public function addFaultHandler(handler:Function, weakReference:Boolean = false):void
Язык версии: | ActionScript 3.0 |
Версия продукта: | Adobe Digital Enterprise Platform Experience Services - Client Component Framework 10 |
Версии среды выполнения: | AIR 1.1, Flash Player 9 |
Add a handler to be called if the operation fails.
Параметры
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 | () | метод |
public function addSuccessHandler(handler:Function, weakReference:Boolean = false):void
Язык версии: | ActionScript 3.0 |
Версия продукта: | Adobe Digital Enterprise Platform Experience Services - Client Component Framework 10 |
Версии среды выполнения: | AIR 1.1, Flash Player 9 |
Add a handler to be called if the operation succeeds.
Параметры
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 | () | метод |
public function callFaultHandlers(error:Error):void
Язык версии: | ActionScript 3.0 |
Версия продукта: | Adobe Digital Enterprise Platform Experience Services - Client Component Framework 10 |
Версии среды выполнения: | AIR 1.1, Flash Player 9 |
Call all the fault handlers with the provided error object.
Параметры
error:Error — The error object.
|
callFaultHandlersViaErrorEvent | () | метод |
public function callFaultHandlersViaErrorEvent(errorEvent:ErrorEvent):void
Язык версии: | ActionScript 3.0 |
Версия продукта: | Adobe Digital Enterprise Platform Experience Services - Client Component Framework 10 |
Версии среды выполнения: | 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));
Параметры
errorEvent:ErrorEvent — The error event.
|
callSuccessHandlers | () | метод |
public function callSuccessHandlers(... params):void
Язык версии: | ActionScript 3.0 |
Версия продукта: | Adobe Digital Enterprise Platform Experience Services - Client Component Framework 10 |
Версии среды выполнения: | AIR 1.1, Flash Player 9 |
Call all the success handlers with the provided parameters.
Параметры
... params — Zero or more parameters to be passed verbatim to any success handlers that have been added.
|
removeFaultHandler | () | метод |
public function removeFaultHandler(handler:Function):void
Язык версии: | ActionScript 3.0 |
Версия продукта: | Adobe Digital Enterprise Platform Experience Services - Client Component Framework 10 |
Версии среды выполнения: | AIR 1.1, Flash Player 9 |
Remove a fault handler.
Параметры
handler:Function — The handler to be removed.
|
removeSuccessHandler | () | метод |
public function removeSuccessHandler(handler:Function):void
Язык версии: | ActionScript 3.0 |
Версия продукта: | Adobe Digital Enterprise Platform Experience Services - Client Component Framework 10 |
Версии среды выполнения: | AIR 1.1, Flash Player 9 |
Remove a success handler.
Параметры
handler:Function — The handler to remove.
|
Tue Jun 12 2018, 11:34 AM Z