Class GeoprocessingJob
- java.lang.Object
-
- com.esri.arcgisruntime.concurrent.Job
-
- com.esri.arcgisruntime.tasks.geoprocessing.GeoprocessingJob
-
- All Implemented Interfaces:
JsonSerializable
,RemoteResource
public final class GeoprocessingJob extends Job
Geoprocessing job is used to run the geoprocessing task on the service.- Since:
- 100.0.0
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class com.esri.arcgisruntime.concurrent.Job
Job.Message, Job.MessageSeverity, Job.MessageSource, Job.Status
-
-
Field Summary
-
Fields inherited from class com.esri.arcgisruntime.concurrent.Job
mCredential, mRequestConfiguration
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description GeoprocessingParameters
getParameters()
Gets the input geoprocessing parameters as passed to this job when callingGeoprocessingTask.createJob(GeoprocessingParameters)
.GeoprocessingResult
getResult()
Gets the result of this job.-
Methods inherited from class com.esri.arcgisruntime.concurrent.Job
addJobChangedListener, addJobDoneListener, addJobMessageAddedListener, addProgressChangedListener, addStatusChangedListener, cancel, cancelAsync, fromJson, getCredential, getError, getMessages, getProgress, getRequestConfiguration, getServerJobId, getStatus, getUnknownJson, getUnsupportedJson, getUri, pause, removeJobChangedListener, removeJobDoneListener, removeJobMessageAddedListener, removeProgressChangedListener, removeStatusChangedListener, setCredential, setRequestConfiguration, setUri, start, toJson
-
-
-
-
Method Detail
-
getResult
public GeoprocessingResult getResult()
Description copied from class:Job
Gets the result of this job.
-
getParameters
public GeoprocessingParameters getParameters()
Gets the input geoprocessing parameters as passed to this job when callingGeoprocessingTask.createJob(GeoprocessingParameters)
. The returnedGeoprocessingParameters
will be a reference to the same instance that was used to create the job. If these parameters contain anyGeoprocessingDataFile
instances created with a local file path, they will be updated on job completion to contain the upload id of the uploaded local file.- Returns:
- the parameters
- Since:
- 100.1.0
-
-