Pacote | com.adobe.icc.token |
Interface | public interface IAsyncToken |
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Asset Composer Building Block 9.5 |
Versões de runtime: | AIR (unsupported), Flash Player 9, Flash Player 10 |
By using an interface for basic token operations, methods can return different types of tokens without the caller needing to know what kind of token it is.
The caller may expect the token's success or fault handlers to be called depending on the result of the method call. Handlers will be called in the order in which they were added.
Propriedade | Definido por | ||
---|---|---|---|
data : Object
Associates custom data to this token. | IAsyncToken | ||
operationName : String [somente leitura]
Returns the operation name associated with this token or null if an operation name was not given. | IAsyncToken |
Método | Definido por | ||
---|---|---|---|
Adds a fault handler to this token. | IAsyncToken | ||
Adds a success and a fault handler to this token. | IAsyncToken | ||
Obsoleto desde 1.0: Use addHandlers, or addSuccessHandler/addFaultHandler
Adds a responder to this token. | IAsyncToken | ||
Adds a success handler to this token. | IAsyncToken |
data | propriedade |
data:Object
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Asset Composer Building Block 9.5 |
Versões de runtime: | AIR (unsupported), Flash Player 9, Flash Player 10 |
Associates custom data to this token.
Implementação
public function get data():Object
public function set data(value:Object):void
operationName | propriedade |
operationName:String
[somente leitura] Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Asset Composer Building Block 9.5 |
Versões de runtime: | AIR (unsupported), Flash Player 9, Flash Player 10 |
Returns the operation name associated with this token or null if an operation name was not given.
Implementação
public function get operationName():String
addFaultHandler | () | método |
public function addFaultHandler(fault:Function):void
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Asset Composer Building Block 9.5 |
Versões de runtime: | AIR (unsupported), Flash Player 9, Flash Player 10 |
Adds a fault handler to this token.
Parâmetros
fault:Function — The function to call on fault. Can be null, but it's not recommended to ignore a possible fault unless
you are certain the call will not fail. Expected function signature: function(fault:Object) .
|
addHandlers | () | método |
public function addHandlers(success:Function, fault:Function):void
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Asset Composer Building Block 9.5 |
Versões de runtime: | AIR (unsupported), Flash Player 9, Flash Player 10 |
Adds a success and a fault handler to this token. This is a convenience over having to explicitly call addSuccessHandler()
and addFaultHandler() after receiving an IToken. With this, you can simply do
asyncMethod().addHandlers(function(event:ResultEvent){}, function(event:FaultEvent){});
Parâmetros
success:Function — The function to call on success. Can be null, but it's rare you wouldn't want to know about success.
Expected function signature: function(data:Object) .
| |
fault:Function — The function to call on fault. Can be null, but it's not recommended to ignore a possible fault unless
you are certain the call will not fail. Expected function signature: function(fault:Object) .
|
addResponder | () | método |
public function addResponder(responder:IResponder):void
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Asset Composer Building Block 9.5 |
Versões de runtime: | AIR (unsupported), Flash Player 9, Flash Player 10 |
Adds a responder to this token. Unfortunately, this method is necessary due to the refactoring effort required in cmAdmin in order to call addHandlers (or addSuccessHandler and addFaultHandler) instead.
Parâmetros
responder:IResponder — The responder to add. This defines a result (success) and a fault handler to call on success or on fault,
respectively.
|
addSuccessHandler | () | método |
public function addSuccessHandler(success:Function):void
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Asset Composer Building Block 9.5 |
Versões de runtime: | AIR (unsupported), Flash Player 9, Flash Player 10 |
Adds a success handler to this token.
Parâmetros
success:Function — The function to call on success. Can be null, but it's rare you wouldn't want to know about success.
Expected function signature: function(data:Object) .
|
Wed Jun 13 2018, 11:10 AM Z