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 

ICollectionToken  - AS3 ADEP Task Management

Packagecom.adobe.ep.taskmanagement.util
Interfacepublic interface ICollectionToken extends IToken
Implementors CollectionToken

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 CollectionToken class represents a token for asynchronous calls that return a collection. The collection 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 : IList
The result collection.
ICollectionToken
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:IList

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 result collection. Although the collection is available, it is not populated until the result handler executes.



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