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 a Job.Status.NOT_STARTED state and Job.start() must be called to start the associated operation.

See the Job class for full information about working with jobs.

Since:
100.0.0
  • Method Details

    • 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.

      Specified by:
      getResult in class Job
      Returns:
      a TileCache object once the job has completed successfully, otherwise null
      Since:
      100.0.0
      See Also: