EnqueuedJob

abstract class EnqueuedJob(val name: String, onFailure: OnFailure, handler: UncaughtException.Handler)(source)

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

Constructors

Link copied to clipboard
protected constructor(name: String, onFailure: OnFailure, handler: UncaughtException.Handler)

Types

Link copied to clipboard
object Companion
Link copied to clipboard

Dynamic configuration for implementors of EnqueuedJob in order to modify how it wants to handle interactions while in a state of Executing.

Link copied to clipboard
enum State : Enum<EnqueuedJob.State>

Properties

Link copied to clipboard
Link copied to clipboard
@get:JvmName(name = "isActive")
val isActive: Boolean

Checks if the job is in a completion state or not.

Link copied to clipboard
@get:JvmName(name = "isCancelled")
val isCancelled: Boolean
Link copied to clipboard
@get:JvmName(name = "isCompleting")
val isCompleting: Boolean

An intermediate "state" indicating that completion, either by success or error/cancellation, is underway.

Link copied to clipboard
@get:JvmName(name = "isError")
val isError: Boolean
Link copied to clipboard
@get:JvmName(name = "isSuccess")
val isSuccess: Boolean
Link copied to clipboard
@JvmField
val name: String

The name for this job. Will be utilized with error handling for contextual purposes.

Link copied to clipboard
@get:JvmName(name = "state")
val state: EnqueuedJob.State

The current State of the job.

Functions

Link copied to clipboard
fun cancel(cause: CancellationException?): Boolean

Cancel the job.

Link copied to clipboard
protected fun cancellationAttempt(): CancellationException?

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.

Link copied to clipboard
fun invokeOnCompletion(handle: ItBlock<CancellationException?>): Disposable

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.

Link copied to clipboard
protected open fun onCancellation(cause: CancellationException?)

Notifies the implementation that the EnqueuedJob has been cancelled in order to perform cleanup, if necessary.

Link copied to clipboard
protected fun <T> onCompletion(response: T, withLock: () -> OnSuccess<T>??): Boolean

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.

Link copied to clipboard
protected fun onError(cause: Throwable, withLock: ItBlock<Throwable>?): Boolean

Sets the job state to State.Error and invokes OnFailure with provided cause. Does nothing if the job is completed or completing.

Link copied to clipboard
protected fun onExecuting()

Moves the state from Enqueued to Executing, indicating that the caller has "taken ownership" of the EnqueuedJob.