cancelJob
inline suspend fun BatchClient.cancelJob(crossinline block: CancelJobRequest.Builder.() -> Unit): CancelJobResponse
Cancels a job in an Batch job queue. Jobs that are in a SUBMITTED, PENDING, or RUNNABLE state are cancelled and the job status is updated to FAILED.
A PENDING job is cancelled after all dependency jobs are completed. Therefore, it might take longer than expected to cancel a job in PENDING status.
When you try to cancel an array parent job in PENDING, Batch attempts to cancel all child jobs. The array parent job is cancelled when all child jobs are completed.
Jobs that progressed to the STARTING or RUNNING state aren't cancelled. However, the API operation still succeeds, even if no job is cancelled. These jobs must be terminated with the TerminateJob or TerminateJobs operation.
Samples
// This example cancels a job with the specified job ID.
val resp = batchClient.cancelJob {
reason = "Cancelling job."
jobId = "1d828f65-7a4d-42e8-996d-3b900ed59dc4"
}Content copied to clipboard