Companion

Functions

Link copied to clipboard
@JvmStatic
@JvmName(name = "immediateErrorJob")
fun OnFailure.toImmediateErrorJob(name: String, cause: Throwable, handler: UncaughtException.Handler): EnqueuedJob

Creates a EnqueuedJob which immediately invokes OnFailure with the provided cause.

Link copied to clipboard
@JvmStatic
@JvmName(name = "immediateSuccessJob")
fun <T> OnSuccess<T>.toImmediateSuccessJob(name: String, response: T, handler: UncaughtException.Handler): EnqueuedJob

Creates a EnqueuedJob which immediately invokes OnSuccess with the provided response.