Home
last modified time | relevance | path

Searched defs:awaitSingle (Results 1 – 4 of 4) sorted by relevance

/external/kotlinx.coroutines/reactive/kotlinx-coroutines-rx2/src/
DRxAwait.kt78 public suspend fun <T> MaybeSource<T>.awaitSingle(): T = awaitSingleOrNull() ?: throw NoSuchElement… in awaitSingle() method
221 public suspend fun <T> ObservableSource<T>.awaitSingle(): T = awaitOne(Mode.SINGLE) in awaitFirst() method
/external/kotlinx.coroutines/reactive/kotlinx-coroutines-jdk9/src/
DAwait.kt80 public suspend fun <T> Flow.Publisher<T>.awaitSingle(): T = method
/external/kotlinx.coroutines/reactive/kotlinx-coroutines-reactor/src/
DMono.kt77 public suspend fun <T> Mono<T>.awaitSingle(): T = awaitSingleOrNull() ?: throw NoSuchElementExcepti… in awaitSingle() method
/external/kotlinx.coroutines/reactive/kotlinx-coroutines-reactive/src/
DAwait.kt77 public suspend fun <T> Publisher<T>.awaitSingle(): T = awaitOne(Mode.SINGLE) in <lambda>() method