JobStatus

sealed class JobStatus

Indicates the current status of a job.

Types

Link copied to clipboard
object Canceling : JobStatus

A job that is in the process of being canceled.

Link copied to clipboard
object Failed : JobStatus

A job that has completed and has failed.

Link copied to clipboard
object NotStarted : JobStatus

A job that has not started.

Link copied to clipboard
object Paused : JobStatus

A job that is paused. Use Job.start() to re-start the job.

Link copied to clipboard
object Started : JobStatus

A job that has started and is executing.

Link copied to clipboard
object Succeeded : JobStatus

A job that has completed successfully.

Inheritors

Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard