JobInfo

AMD: require(["esri/rest/support/JobInfo"], (JobInfo) => { /* code goes here */ });
ESM: import JobInfo from "@arcgis/core/rest/support/JobInfo.js";
Class: esri/rest/support/JobInfo
Inheritance: JobInfo Accessor
Since: ArcGIS Maps SDK for JavaScript 4.20

Represents information pertaining to the execution of an asynchronous geoprocessor request on the server.

See also

Property Overview

Any properties can be set, retrieved or listened to. See the Working with Properties topic.
Show inherited properties Hide inherited properties
Name Type Summary Class
String

The name of the class.

more details
Accessor
String

The unique job ID assigned by ArcGIS Server.

more details
JobInfo
String

The job status.

more details
JobInfo
GPMessage[]

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

more details
JobInfo
Object

Displays the progress of the geoprocessing job.

more details
JobInfo
Object

The options to be used for data requests.

more details
JobInfo
String

ArcGIS Server Rest API endpoint to the resource that receives the geoprocessing request.

more details
JobInfo

Property Details

declaredClass Stringreadonly inherited

The name of the class. The declared class name is formatted as esri.folder.className.

jobId String

The unique job ID assigned by ArcGIS Server.

jobStatus String

The job status.

Possible Values:"job-cancelled"|"job-cancelling"|"job-deleted"|"job-deleting"|"job-timed-out"|"job-executing"|"job-failed"|"job-new"|"job-submitted"|"job-succeeded"|"job-waiting"

messages GPMessage[]

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

progress Objectreadonly
Since: ArcGIS Maps SDK for JavaScript 4.26

Displays the progress of the geoprocessing job. This value is only present when jobStatus is job-executing and is only updated every five seconds.

Properties
message String

Progress message.

percent Number

Progress percentage.

See also
Example
// Submit an asynchronous geoprocessing job
const jobInfo = await submitJob(url, params);

// Define a callback that will be called periodically. The function will print the
// geoprocessor's progress and percentage complete (if a step progressor).
const statusCallback = ({ jobStatus, progress }) => {
  if (jobStatus !== "job-executing") { return; }

  const { message, percent } = progress;
  const status = `Message:  ${message}
                  Progress: ${percent ?? "not specified"}`
  console.log(`Status: ${status}`);
};

// Wait for the geoprocessing job to complete and print job progress
// to the console every five seconds
await jobInfo.waitForJobCompletion({ interval: 5000, statusCallback });
requestOptions Object

The options to be used for data requests. These options can also be controlled through the requestOptions method parameter.

sourceUrl String

ArcGIS Server Rest API endpoint to the resource that receives the geoprocessing request.

Method Overview

Show inherited methods Hide inherited methods
Name Return Type Summary Class

Adds one or more handles which are to be tied to the lifecycle of the object.

more details
Accessor
Promise<JobInfo>

Cancels an asynchronous geoprocessing job.

more details
JobInfo
Promise<JobInfo>

Sends a request for the current state of this job.

more details
JobInfo

Stop monitoring this job for status updates.

more details
JobInfo
Promise<ParameterValue>

Sends a request to the GP Task to get the task result identified by resultName.

more details
JobInfo
Promise<ParameterValue>

Sends a request to the GP Task to get the task result identified by jobId and resultName as an image.

more details
JobInfo
Promise<MapImageLayer>

Get the task result identified by jobId as an MapImageLayer.

more details
JobInfo
*

Creates a new instance of this class and initializes it with values from a JSON object generated from an ArcGIS product.

more details
JobInfo
Boolean

Returns true if a named group of handles exist.

more details
Accessor

Removes a group of handles owned by the object.

more details
Accessor
Object

Converts an instance of this class to its ArcGIS portal JSON representation.

more details
JobInfo
Promise<JobInfo>

Resolves when an asynchronous job has completed.

more details
JobInfo

Method Details

addHandles(handleOrHandles, groupKey)inherited
Since: ArcGIS Maps SDK for JavaScript 4.25

Adds one or more handles which are to be tied to the lifecycle of the object. The handles will be removed when the object is destroyed.

// Manually manage handles
const handle = reactiveUtils.when(
  () => !view.updating,
  () => {
    wkidSelect.disabled = false;
  },
  { once: true }
);

this.addHandles(handle);

// Destroy the object
this.destroy();
Parameters
handleOrHandles WatchHandle|WatchHandle[]

Handles marked for removal once the object is destroyed.

groupKey *
optional

Key identifying the group to which the handles should be added. All the handles in the group can later be removed with Accessor.removeHandles(). If no key is provided the handles are added to a default group.

cancelJob(jobId, requestOptions){Promise<JobInfo>}

Cancels an asynchronous geoprocessing job. Requires an ArcGIS Server 10.1 service or greater.

Parameters
jobId String

A string that uniquely identifies a job on the server. It is created when a job is submitted for execution and later used to check its status and retrieve the results.

requestOptions Object
optional

Additional options to be used for the data request (will override requestOptions defined during construction).

Returns
Type Description
Promise<JobInfo> When resolved, returns a JobInfo.
checkJobStatus(requestOptions){Promise<JobInfo>}

Sends a request for the current state of this job.

Parameter
requestOptions Object
optional

Additional options to be used for the data request (will override requestOptions defined during construction).

Returns
Type Description
Promise<JobInfo> When resolved, returns a JobInfo.
destroy()

Stop monitoring this job for status updates.

// Stop monitoring this job for status updates.
jobInfo.destroy();
See also
fetchResultData(resultName, gpOptions, requestOptions){Promise<ParameterValue>}

Sends a request to the GP Task to get the task result identified by resultName.

Parameters
resultName String

The name of the result parameter as defined in Services Directory.

gpOptions GPOptions
optional

Input options for the geoprocessing service return values.

requestOptions Object
optional

Additional options to be used for the data request (will override requestOptions defined during construction).

Returns
Type Description
Promise<ParameterValue> When resolved, returns an object with a property named result of type ParameterValue, which contains the result parameters and the task execution messages.
fetchResultImage(jobId, resultName, imageParams, requestOptions){Promise<ParameterValue>}

Sends a request to the GP Task to get the task result identified by jobId and resultName as an image.

Parameters
jobId String

The jobId returned from JobInfo.

resultName String

The name of the result parameter as defined in the Services Directory.

imageParams ImageParameters

Specifies the properties of the result image.

requestOptions Object
optional

Additional options to be used for the data request (will override requestOptions defined during construction).

Returns
Type Description
Promise<ParameterValue> When resolved, returns an Object with a mapImage property of type MapImage
fetchResultMapImageLayer(jobId){Promise<MapImageLayer>}

Get the task result identified by jobId as an MapImageLayer.

Parameter
jobId String

The jobId returned from JobInfo.

Returns
Type Description
Promise<MapImageLayer> A promise resolving to an instance of MapImageLayer.
Example
// Get the resulting map image layer from a completed geoprocessing job.
jobInfo.fetchResultMapImageLayer(jobInfo.jobId)).then(function(layer){
  view.map.add(layer);
});
fromJSON(json){*}static

Creates a new instance of this class and initializes it with values from a JSON object generated from an ArcGIS product. The object passed into the input json parameter often comes from a response to a query operation in the REST API or a toJSON() method from another ArcGIS product. See the Using fromJSON() topic in the Guide for details and examples of when and how to use this function.

Parameter
json Object

A JSON representation of the instance in the ArcGIS format. See the ArcGIS REST API documentation for examples of the structure of various input JSON objects.

Returns
Type Description
* Returns a new instance of this class.
hasHandles(groupKey){Boolean}inherited
Since: ArcGIS Maps SDK for JavaScript 4.25

Returns true if a named group of handles exist.

Parameter
groupKey *
optional

A group key.

Returns
Type Description
Boolean Returns true if a named group of handles exist.
Example
// Remove a named group of handles if they exist.
if (obj.hasHandles("watch-view-updates")) {
  obj.removeHandles("watch-view-updates");
}
removeHandles(groupKey)inherited
Since: ArcGIS Maps SDK for JavaScript 4.25

Removes a group of handles owned by the object.

Parameter
groupKey *
optional

A group key or an array or collection of group keys to remove.

Example
obj.removeHandles(); // removes handles from default group

obj.removeHandles("handle-group");
obj.removeHandles("other-handle-group");
toJSON(){Object}

Converts an instance of this class to its ArcGIS portal JSON representation. See the Using fromJSON() guide topic for more information.

Returns
Type Description
Object The ArcGIS portal JSON representation of an instance of this class.
waitForJobCompletion(options){Promise<JobInfo>}

Resolves when an asynchronous job has completed. Optionally job progress can be monitored.

Parameters
Specification
options Object
optional

Options. See properties below for object specifications.

Specification
interval Object
optional
Default Value: 1000

The time in millisecond between remote job status requests.

signal Object
optional

AbortSignal allows for cancelable asynchronous job. If canceled, the promise will be rejected with an error named AbortError.

statusCallback Object
optional

Callback function that is called at the specified interval. Use this method to monitor job status and messages.

Returns
Type Description
Promise<JobInfo> When resolved, returns a JobInfo.
Example
// Submit an asynchronous geoprocessing job. Display the remote job status every 1.5 seconds.
// When the job has completed, the output is a MapImageLayer.
const startDate = "1998-01-01 00:00:00";
const endDate = "1998-05-31 00:00:00";
const params = {
  query: "(Date >= date '" + startDate + "' and Date <= date '" + endDate + "')"
};

const url = "https://sampleserver6.arcgisonline.com/arcgis/rest/services/911CallsHotspot/GPServer/911%20Calls%20Hotspot";

submitJob(url, params).then((jobInfo) => {
  const jobid = jobInfo.jobId;
  console.log("ArcGIS Server job ID: ", jobid);

  const options = {
    interval: 1500,
    statusCallback: (j) => {
      console.log("Job Status: ", j.jobStatus);
    }
  };

  jobInfo.waitForJobCompletion(options).then(() => {
    const layer = jobInfo.fetchResultMapImageLayer();
    map.add(layer);
  });
});

Your browser is no longer supported. Please upgrade your browser for the best experience. See our browser deprecation post for more details.