Continuation

interface Continuation<in T>(source)

Interface representing a continuation after a suspension point that returns a value of type T.

Since Kotlin

1.3

Functions

Link copied to clipboard
abstract fun resumeWith(result: Result<T>)

Resumes the execution of the corresponding coroutine passing a successful or failed result as the return value of the last suspension point.

Properties

Link copied to clipboard

The context of the coroutine that corresponds to this continuation.

Extensions

Link copied to clipboard

Intercepts this continuation with ContinuationInterceptor.

Intercepts this continuation with ContinuationInterceptor.

Intercepts this continuation with ContinuationInterceptor.

Intercepts this continuation with ContinuationInterceptor.

Link copied to clipboard
inline fun <T> Continuation<T>.resume(value: T)

Resumes the execution of the corresponding coroutine passing value as the return value of the last suspension point.

Link copied to clipboard
inline fun <T> Continuation<T>.resumeWithException(exception: Throwable)

Resumes the execution of the corresponding coroutine so that the exception is re-thrown right after the last suspension point.