Hide Table of Contents
esri/dijit/util
esri/layer/pixelFilters
esri/process
esri/support
esri/workers
Class: JobInfo

require(["esri/tasks/JobInfo"], function(JobInfo) { /* code goes here */ });

Description

(Added at v1.0)
Represents information pertaining to the execution of an asynchronous GP task on the server. JobInfo has no constructor.

Samples

Search for samples that use this class.

Constants

NameDescription
STATUS_CANCELLEDThe job has been cancelled.
STATUS_CANCELLINGThe job is in the process of cancelling.
STATUS_DELETEDThe job has been deleted.
STATUS_DELETINGThe job is in the process of deleting.
STATUS_EXECUTINGThe job is being executed by job processor.
STATUS_FAILEDThe job execution has failed.
STATUS_NEWThe job is new.
STATUS_SUBMITTEDThe job is submitted for execution.
STATUS_SUCCEEDEDThe job has completed successfully.
STATUS_TIMED_OUTThe job execution has timed out.
STATUS_WAITINGThe job is waiting for available job processor.

Properties

NameTypeSummary
jobIdStringThe unique job ID assigned by ArcGIS Server.
jobStatusStringThe job status.
messagesGPMessage[]An array of messages that include the message type and a description.
Property Details

<String> jobId

The unique job ID assigned by ArcGIS Server.

<String> jobStatus

The job status. Returned values are included in the Constants table.

<GPMessage[]> messages

An array of messages that include the message type and a description.
Show Modal