awaitOutcome

suspend fun <T> Deferred<T>.awaitOutcome(): Outcome<T, Any>

Awaits a deferred and returns an outcome instead of throwing an error on cancellation.


@JvmName(name = "awaitDeferredOutcome")
suspend fun <T> Deferred<Outcome<T, Any>>.awaitOutcome(): Outcome<T, Any>

Awaits a deferred and returns an outcome instead of throwing an error on cancellation. Best used with asyncOutcome.