Pakiet | com.adobe.gravity.utility.async |
Klasa | public class Token |
Dziedziczenie | Token Object |
Implementuje | IToken |
Wersja języka: | ActionScript 3.0 |
Wersja produktu: | Adobe Digital Enterprise Platform Experience Services - Client Component Framework 10 |
Wersje środowiska wykonawczego: | 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.
Metoda | Zdefiniowane przez | ||
---|---|---|---|
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 | ||
Wskazuje, czy dla obiektu zdefiniowano określoną właściwość. | Object | ||
Wskazuje, czy instancja klasy Object należy do łańcucha prototypów obiektu określonego jako parametr. | Object | ||
Wskazuje, czy określona właściwość istnieje i jest przeliczalna. | Object | ||
Remove a fault handler. | Token | ||
Remove a success handler. | Token | ||
Ustawia dostępność właściwości dynamicznej używanej w pętlach. | Object | ||
Zwraca ciąg reprezentujący obiekt — sformatowany zgodnie z konwencjami właściwymi dla ustawień regionalnych. | Object | ||
Zwraca ciąg reprezentujący określony obiekt. | Object | ||
Zwraca pierwotną wartość dla określonego obiektu. | Object |
Token | () | Konstruktor |
public function Token()
Wersja języka: | ActionScript 3.0 |
Wersja produktu: | Adobe Digital Enterprise Platform Experience Services - Client Component Framework 10 |
Wersje środowiska wykonawczego: | AIR 1.1, Flash Player 9 |
Constructor.
addFaultHandler | () | metoda |
public function addFaultHandler(handler:Function, weakReference:Boolean = false):void
Wersja języka: | ActionScript 3.0 |
Wersja produktu: | Adobe Digital Enterprise Platform Experience Services - Client Component Framework 10 |
Wersje środowiska wykonawczego: | AIR 1.1, Flash Player 9 |
Add a handler to be called if the operation fails.
Parametry
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 | () | metoda |
public function addSuccessHandler(handler:Function, weakReference:Boolean = false):void
Wersja języka: | ActionScript 3.0 |
Wersja produktu: | Adobe Digital Enterprise Platform Experience Services - Client Component Framework 10 |
Wersje środowiska wykonawczego: | AIR 1.1, Flash Player 9 |
Add a handler to be called if the operation succeeds.
Parametry
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 | () | metoda |
public function callFaultHandlers(error:Error):void
Wersja języka: | ActionScript 3.0 |
Wersja produktu: | Adobe Digital Enterprise Platform Experience Services - Client Component Framework 10 |
Wersje środowiska wykonawczego: | AIR 1.1, Flash Player 9 |
Call all the fault handlers with the provided error object.
Parametry
error:Error — The error object.
|
callFaultHandlersViaErrorEvent | () | metoda |
public function callFaultHandlersViaErrorEvent(errorEvent:ErrorEvent):void
Wersja języka: | ActionScript 3.0 |
Wersja produktu: | Adobe Digital Enterprise Platform Experience Services - Client Component Framework 10 |
Wersje środowiska wykonawczego: | 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));
Parametry
errorEvent:ErrorEvent — The error event.
|
callSuccessHandlers | () | metoda |
public function callSuccessHandlers(... params):void
Wersja języka: | ActionScript 3.0 |
Wersja produktu: | Adobe Digital Enterprise Platform Experience Services - Client Component Framework 10 |
Wersje środowiska wykonawczego: | AIR 1.1, Flash Player 9 |
Call all the success handlers with the provided parameters.
Parametry
... params — Zero or more parameters to be passed verbatim to any success handlers that have been added.
|
removeFaultHandler | () | metoda |
public function removeFaultHandler(handler:Function):void
Wersja języka: | ActionScript 3.0 |
Wersja produktu: | Adobe Digital Enterprise Platform Experience Services - Client Component Framework 10 |
Wersje środowiska wykonawczego: | AIR 1.1, Flash Player 9 |
Remove a fault handler.
Parametry
handler:Function — The handler to be removed.
|
removeSuccessHandler | () | metoda |
public function removeSuccessHandler(handler:Function):void
Wersja języka: | ActionScript 3.0 |
Wersja produktu: | Adobe Digital Enterprise Platform Experience Services - Client Component Framework 10 |
Wersje środowiska wykonawczego: | AIR 1.1, Flash Player 9 |
Remove a success handler.
Parametry
handler:Function — The handler to remove.
|
Tue Jun 12 2018, 12:06 PM Z