Class ExportTileCacheJob
- java.lang.Object
-
- com.esri.arcgisruntime.concurrent.Job
-
- com.esri.arcgisruntime.tasks.tilecache.ExportTileCacheJob
-
- All Implemented Interfaces:
JsonSerializable
,RemoteResource
public final class ExportTileCacheJob extends Job
A Job that exports a tile cache (.tpk or .tpkx) from a service.An ExportTileCacheJob instance is returned by
ExportTileCacheTask.exportTileCache(ExportTileCacheParameters, String)
. The Job is returned in aJob.Status.NOT_STARTED
state andJob.start()
must be called to start the associated operation.See the
Job
class for full information about working with jobs.- Since:
- 100.0.0
- See Also:
Job
-
-
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 TileCache
getResult()
Returns a TileCache object once the job has completed successfully.-
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 TileCache getResult()
Returns a TileCache object once the job has completed successfully.The returned tile cache is in a not loaded state, use
TileCache.loadAsync()
to load it.
-
-