asSingle
fun <T> Deferred<T>.asSingle(
context: CoroutineContext
): Single<T>
Converts this deferred value to the hot reactive single that signals either onSuccess or onError.
Every subscriber gets the same completion value. Unsubscribing from the resulting single does not affect the original deferred value in any way.
Parameters
context
- – the coroutine context from which the resulting single is going to be signalled