Home
last modified time | relevance | path

Searched defs:awaitSingleOrNull (Results 1 – 3 of 3) sorted by relevance

/external/kotlinx.coroutines/reactive/kotlinx-coroutines-rx2/src/
DRxAwait.kt52 public suspend fun <T> MaybeSource<T>.awaitSingleOrNull(): T? = suspendCancellableCoroutine { cont … in awaitSingleOrNull() method
/external/kotlinx.coroutines/reactive/kotlinx-coroutines-reactor/src/
DMono.kt46 public suspend fun <T> Mono<T>.awaitSingleOrNull(): T? = suspendCancellableCoroutine { cont -> in awaitSingleOrNull() method
/external/kotlinx.coroutines/reactive/kotlinx-coroutines-reactive/src/
DAwait.kt141 public suspend fun <T> Publisher<T>.awaitSingleOrNull(): T? = awaitOne(Mode.SINGLE_OR_DEFAULT) in <lambda>() method