Paket | com.adobe.livecycle.rca.token |
Schnittstelle | public interface IAsyncToken |
Umsetzer | RCAToken |
Sprachversion: | ActionScript 3.0 |
Produktversion: | Baustein „Review, Commenting, and Approval“ 9.5 |
Laufzeitversionen: | Flash Player 9, Flash Player 10, AIR (unsupported) |
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.
Methode | Definiert von | ||
---|---|---|---|
Adds a fault handler to this token. | IAsyncToken | ||
Adds success and fault handlers to this token. | IAsyncToken | ||
Adds a responder to this token. | IAsyncToken | ||
Adds a success handler to this token. | IAsyncToken |
addFaultHandler | () | Methode |
public function addFaultHandler(fault:Function):void
Sprachversion: | ActionScript 3.0 |
Produktversion: | Baustein „Review, Commenting, and Approval“ 9.5 |
Laufzeitversionen: | Flash Player 9, Flash Player 10, AIR (unsupported) |
Adds a fault handler to this token.
Parameter
fault:Function — The function to call on fault. Can be null, but ignoring a possible fault is not recommended unless
you are certain the call cannot fail. The expected function signature is function(fault:Object) .
|
addHandlers | () | Methode |
public function addHandlers(success:Function, fault:Function):void
Sprachversion: | ActionScript 3.0 |
Produktversion: | Baustein „Review, Commenting, and Approval“ 9.5 |
Laufzeitversionen: | Flash Player 9, Flash Player 10, AIR (unsupported) |
Adds success and fault handlers to this token. Adding handlers is more convenient than explicitly calling addSuccessHandler()
and addFaultHandler() after receiving an IToken. Instead, you can use
asyncMethod().addHandlers(function(event:ResultEvent){}, function(event:FaultEvent){});
Parameter
success:Function — The function to call on success. Can be null, but in most cases, you want to call a function on success.
The expected function signature is function(data:Object) .
| |
fault:Function — The function to call on fault. Can be null, but ignoring a fault is not recommended unless
you are certain that the call cannot fail. The expected function signature is function(fault:Object) .
|
addResponder | () | Methode |
public function addResponder(responder:IResponder):void
Sprachversion: | ActionScript 3.0 |
Produktversion: | Baustein „Review, Commenting, and Approval“ 9.5 |
Laufzeitversionen: | Flash Player 9, Flash Player 10, AIR (unsupported) |
Adds a responder to this token.
Parameter
responder:IResponder — The responder to add. This responder defines a result or success handler to call on success, and a fault handler to call on fault.
|
addSuccessHandler | () | Methode |
public function addSuccessHandler(success:Function):void
Sprachversion: | ActionScript 3.0 |
Produktversion: | Baustein „Review, Commenting, and Approval“ 9.5 |
Laufzeitversionen: | Flash Player 9, Flash Player 10, AIR (unsupported) |
Adds a success handler to this token.
Parameter
success:Function — The function to call on success. Can be null, but in most cases, you want to call a function on success.
The expected function signature is function(data:Object) .
|
Tue Jun 12 2018, 10:04 AM Z