await
suspend fun <T> SingleSource<T>.await(): T
Awaits for completion of the single value without blocking a thread. Returns the resulting value or throws the corresponding exception if this single had produced error.
This suspending function is cancellable. If the Job of the current coroutine is cancelled or completed while this suspending function is waiting, this function immediately resumes with CancellationException.