ActionScript® 3.0 Reference for the Adobe® Flash® Platform
Home  |  Show Packages and Classes List |  Packages  |  Classes  |  What's New  |  Index  |  Appendixes
com.adobe.ep.taskmanagement.util 

IObjectToken  - AS3 ADEP Task Management

Packagecom.adobe.ep.taskmanagement.util
Interfacepublic interface IObjectToken extends IToken
Implementors ObjectToken

Language Version: ActionScript 3.0
Product Version: Adobe Digital Enterprise Platform Experience Services - Task Management 10
Runtime Versions: AIR 2.6, Flash Player 10.2

The ObjectToken class represents a token for an asynchronous call that returns an object. The object can be accessed from the result property immediately after the asynchronous call, although it may not be populated at that time. Use this class when the result is bound as a data provider.



Public Properties
 PropertyDefined By
  result : Object
The object that is returned by the asynchronous call.
IObjectToken
Public Methods
 MethodDefined By
 Inherited
Adds a fault handler for this asynchronous invocation.
IToken
 Inherited
addHandlers(resultHandler:Function, faultHandler:Function):void
Adds a result and fault handler for this asynchronous invocation.
IToken
 Inherited
Adds an object to handle the result or failure for an asynchronous invocation.
IToken
 Inherited
Adds a result handler for this asynchronous invocation.
IToken
 Inherited
Calls all the fault handlers.
IToken
 Inherited
Calls all the result handlers.
IToken
Property Detail

result

property
result:Object

Language Version: ActionScript 3.0
Product Version: Adobe Digital Enterprise Platform Experience Services - Task Management 10
Runtime Versions: AIR 2.6, Flash Player 10.2

The object that is returned by the asynchronous call.



Implementation
    public function get result():Object
    public function set result(value:Object):void