package kotlinx.coroutines import kotlinx.coroutines.selects.* /** * Deferred value is a non-blocking cancellable future — it is a [Job] with a result. * * It is created with the [async][CoroutineScope.async] coroutine builder or via the constructor of [CompletableDeferred] class. * It is in [active][isActive] state while the value is being computed. * * `Deferred` has the same state machine as the [Job] with additional convenience methods to retrieve * the successful or failed result of the computation that was carried out. The result of the deferred is * available when it is [completed][isCompleted] and can be retrieved by [await] method, which throws * an exception if the deferred had failed. * Note that a _cancelled_ deferred is also considered as completed. * The corresponding exception can be retrieved via [getCompletionExceptionOrNull] from a completed instance of deferred. * * Usually, a deferred value is created in _active_ state (it is created and started). * However, the [async][CoroutineScope.async] coroutine builder has an optional `start` parameter that creates a deferred value in _new_ state * when this parameter is set to [CoroutineStart.LAZY]. * Such a deferred can be made _active_ by invoking [start], [join], or [await]. * * A deferred value is a [Job]. A job in the * [coroutineContext](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.coroutines/coroutine-context.html) * of [async][CoroutineScope.async] builder represents the coroutine itself. * * All functions on this interface and on all interfaces derived from it are **thread-safe** and can * be safely invoked from concurrent coroutines without external synchronization. * * **`Deferred` interface and all its derived interfaces are not stable for inheritance in 3rd party libraries**, * as new methods might be added to this interface in the future, but is stable for use. */ public interface Deferred : Job { /** * Awaits for completion of this value without blocking the thread and returns the resulting value or throws * the exception if the deferred was cancelled. * * Unless the calling coroutine is cancelled, [await] will return the same result on each invocation: * if the [Deferred] completed successfully, [await] will return the same value every time; * if the [Deferred] completed exceptionally, [await] will rethrow the same exception. * * This suspending function is itself cancellable: if the [Job] of the current coroutine is cancelled or completed * while this suspending function is waiting, this function immediately resumes with [CancellationException]. * * This means that [await] can throw [CancellationException] in two cases: * - if the coroutine in which [await] was called got cancelled, * - or if the [Deferred] itself got completed with a [CancellationException]. * * In both cases, the [CancellationException] will cancel the coroutine calling [await], unless it's caught. * The following idiom may be helpful to avoid this: * ``` * try { * deferred.await() * } catch (e: CancellationException) { * currentCoroutineContext().ensureActive() // throws if the current coroutine was cancelled * processException(e) // if this line executes, the exception is the result of `await` itself * } * ``` * * There is a **prompt cancellation guarantee**: even if this function is ready to return the result, but was cancelled * while suspended, [CancellationException] will be thrown. See [suspendCancellableCoroutine] for low-level details. * * This function can be used in [select] invocations with an [onAwait] clause. * Use [isCompleted] to check for completion of this deferred value without waiting, and * [join] to wait for completion without returning the result. */ public suspend fun await(): T /** * Clause using the [await] suspending function as a [select] clause. * It selects with the deferred value when the [Deferred] completes. * If [Deferred] completes with an exception, the whole the [select] invocation fails with the same exception. * Note that, if [Deferred] completed with a [CancellationException], throwing it may have unintended * consequences. See [await] for details. */ public val onAwait: SelectClause1 /** * Returns *completed* result or throws [IllegalStateException] if this deferred value has not * [completed][isCompleted] yet. It throws the corresponding exception if this deferred was [cancelled][isCancelled]. * * This function is designed to be used from [invokeOnCompletion] handlers, when there is an absolute certainty that * the value is already complete. See also [getCompletionExceptionOrNull]. * * **Note: This is an experimental api.** This function may be removed or renamed in the future. */ @ExperimentalCoroutinesApi public fun getCompleted(): T /** * Returns *completion exception* result if this deferred was [cancelled][isCancelled] and has [completed][isCompleted], * `null` if it had completed normally, or throws [IllegalStateException] if this deferred value has not * [completed][isCompleted] yet. * * This function is designed to be used from [invokeOnCompletion] handlers, when there is an absolute certainty that * the value is already complete. See also [getCompleted]. * * **Note: This is an experimental api.** This function may be removed or renamed in the future. */ @ExperimentalCoroutinesApi public fun getCompletionExceptionOrNull(): Throwable? }