| Package | com.esri.drs |
| Class | public class DRSBaseTask |
| Inheritance | DRSBaseTask com.esri.ags.tasks.BaseTask |
| Subclasses | BatchValidationTask, DashboardTask, ReviewerResultsTask |
| Property | Defined By | ||
|---|---|---|---|
| createReviewerSessionLastResult : ReviewerSession
ReviewerSession returned from last call to the createReviewerSession function. | DRSBaseTask | ||
| getLifecycleStatusStringsLastResult : Array
Array of lifecycle status strings returned from last call to the getLifecycleStatusStrings function. | DRSBaseTask | ||
| getReviewerSessionsLastResult : Array
Array of ReviewerSession object returned from last call to the getReviewerSessions function. | DRSBaseTask | ||
| Method | Defined By | ||
|---|---|---|---|
createReviewerSession(sessionName:String, sessionProperties:SessionProperties, responder:IResponder = null):AsyncToken
Creates a new Reviewer Session. | DRSBaseTask | ||
getLifecycleStatusStrings(responder:IResponder = null):AsyncToken
Retrieves a list of localized lifecycle status strings from the reviewer workspace. | DRSBaseTask | ||
getReviewerSessions(responder:IResponder = null):AsyncToken
Returns an array of sessions in a Reviewer workspace. | DRSBaseTask | ||
| Event | Summary | Defined By | ||
|---|---|---|---|---|
| Dispatched when createReviewerSession operation successfully completes. | DRSBaseTask | |||
| Dispatched when there is a problem accessing the Reviewer Map Server. | DRSBaseTask | |||
| Dispatched when getLifecycleStatusStrings operation successfully completes. | DRSBaseTask | |||
| Dispatched when getReviewerSessions operation successfully completes. | DRSBaseTask | |||
| createReviewerSessionLastResult | property |
createReviewerSessionLastResult:ReviewerSessionReviewerSession returned from last call to the createReviewerSession function.
This property can be used as the source for data binding.
public function get createReviewerSessionLastResult():ReviewerSession public function set createReviewerSessionLastResult(value:ReviewerSession):voidSee also
| getLifecycleStatusStringsLastResult | property |
getLifecycleStatusStringsLastResult:ArrayArray of lifecycle status strings returned from last call to the getLifecycleStatusStrings function.
This property can be used as the source for data binding.
public function get getLifecycleStatusStringsLastResult():Array public function set getLifecycleStatusStringsLastResult(value:Array):voidSee also
| getReviewerSessionsLastResult | property |
getReviewerSessionsLastResult:ArrayArray of ReviewerSession object returned from last call to the getReviewerSessions function.
This property can be used as the source for data binding.
public function get getReviewerSessionsLastResult():Array public function set getReviewerSessionsLastResult(value:Array):voidSee also
| createReviewerSession | () | method |
public function createReviewerSession(sessionName:String, sessionProperties:SessionProperties, responder:IResponder = null):AsyncTokenCreates a new Reviewer Session. On completion the createReviewerSessionComplete event is fired and the optional responder is called.
Parameters
sessionName:String — The responder to call on result or fault.
| |
sessionProperties:SessionProperties | |
responder:IResponder (default = null) |
AsyncToken |
| getLifecycleStatusStrings | () | method |
public function getLifecycleStatusStrings(responder:IResponder = null):AsyncTokenRetrieves a list of localized lifecycle status strings from the reviewer workspace. Each reviewer result stored in the reviewer workspace has a lifecycle status code that matches one of the strings returned from this method execution. Use these strings to replace the code numeric values when displaying a list of reviewer results to the user. On completion the getLifecycleStatusStringsComplete event is fired and the optional responder is called.
Parameters
responder:IResponder (default = null) — The responder to call on result or fault.
|
AsyncToken |
| getReviewerSessions | () | method |
public function getReviewerSessions(responder:IResponder = null):AsyncTokenReturns an array of sessions in a Reviewer workspace. On completion the getReviewerSessionsComplete event is fired and the optional responder is called.
Parameters
responder:IResponder (default = null) — The responder to call on result or fault.
|
AsyncToken |
| createReviewerSessionComplete | Event |
com.esri.drs.DataReviewerTaskEventcom.esri.drs.DataReviewerTaskEvent.CREATE_REVIEWER_SESSION_COMPLETEDispatched when createReviewerSession operation successfully completes. The event result is a ReviewerSession object.
| fault | Event |
mx.rpc.events.FaultEventDispatched when there is a problem accessing the Reviewer Map Server.
| getLifecycleStatusStringsComplete | Event |
com.esri.drs.DataReviewerTaskEventcom.esri.drs.DataReviewerTaskEvent.GET_LIFECYCLE_STATUS_STRINGS_COMPLETEDispatched when getLifecycleStatusStrings operation successfully completes. The event result is an array of strings.
| getReviewerSessionsComplete | Event |
com.esri.drs.DataReviewerTaskEventcom.esri.drs.DataReviewerTaskEvent.GET_REVIEWER_SESSIONS_COMPLETEDispatched when getReviewerSessions operation successfully completes. The event result is an array of ReviewerSession objects.