EnqueuedJob
Base abstraction for single-use model that tracks the state of a queue-able job. Once completed, either successfully or by cancellation/error, the EnqueuedJob is dead and should be discarded.
Heavily inspired by kotlinx.coroutines.Job
See also
Types
Dynamic configuration for implementors of EnqueuedJob in order to modify how it wants to handle interactions while in a state of Executing.
Properties
The ExecutionPolicy of this job.
If state is State.Cancelled
An intermediate "state" indicating that completion, either by success or error/cancellation, is underway.
If state is State.Error
If state is State.Success
The current State of the job.
Functions
If cancel was called while the EnqueuedJob is in a non-cancellable state (i.e. Executing), and the implementing class has declared a ExecutionPolicy allowing for it, this will be set in order to signal for cancellation.
Register a handle to be invoked when this EnqueuedJob completes, either successfully or by cancellation/error. If handle is already registered, Disposable.noOp is returned.
Notifies the implementation that the EnqueuedJob has been cancelled in order to perform cleanup, if necessary.
Sets the job state to State.Success and invokes OnSuccess returned by withLock with provided response. Does nothing if the job is completed or completing.
Moves the state from Enqueued to Executing, indicating that the caller has "taken ownership" of the EnqueuedJob.