cancel

abstract suspend fun cancel(): Result<Boolean>

Cancels this Job and waits for any asynchronous, server-side operations to be canceled. The job is canceled and will result in a JobStatus.Failed status after all cancellation tasks have completed. For jobs running on a server, a cancel request is sent for the associated Job.serverJobId. You should always cancel unneeded jobs (for example when exiting your app) to avoid placing unnecessary load on the server. Examples of server-side jobs include:

In addition, the GenerateOfflineMapJob is composed of several server-side jobs, depending on the types of layers in your ArcGISMap. Canceling this high-level job will also send a cancel request to the underlying server jobs.

Upon calling this method, the Job.status is immediately set to JobStatus.Canceling.

Return

a Result containing a Boolean which is true if the job was successfully canceled, false otherwise. Result.getOrNull returns false if server jobs were requested to cancel but the response was not successful.

Since

200.0.0