Continuation
Interface representing a continuation after a suspension point that returns a value of type T
.
Properties
context
The context of the coroutine that corresponds to this continuation.
abstract val context: CoroutineContext
Functions
Extension Functions
resume
Resumes the execution of the corresponding coroutine passing value as the return value of the last suspension point.
fun <T> Continuation<T>.resume(value: T)
resumeWithException
Resumes the execution of the corresponding coroutine so that the exception is re-thrown right after the last suspension point.
fun <T> Continuation<T>.resumeWithException(
exception: Throwable)