The Geoprocessor type exposes the following members.

Methods

  NameDescription
Cancel
Cancels status checking and subsequent GetResultData requests. Used with asynchronous tasks, i.e., when SubmitJob is used.
CheckStatus
Sends a callback request to submit a Geoprocessing task. This operation will pass a JobInfo object to the onStatusCallback function.
Execute
Performs a geoprocessing task operation on a synchronous geoprocessing services. The result of this task is a GPResults object passed to callback function.
GetInput
Sends a callback request to get the inputs of a submitted Geoprocessing task.
GetResultData
Sends a callback request to get the results of a submitted Geoprocessing task. Called on completion of a Geoprocessor submit task. The result of this action is a ParameterValue object passed to the callback function.
SubmitJob
Performs a geoprocessing operation on an asynchronous geoprocessing service. This operation will pass JobInfo objects to the function specified in the onStatusCallback argument while the job is executing, and a GPResults to the function specified in onCompleteCallback upon completion.

See Also