/external/kotlinx.coroutines/kotlinx-coroutines-core/common/src/channels/ |
D | Produce.kt | 17 public interface ProducerScope<in E> : CoroutineScope, SendChannel<E> { in <lambda>() interface 49 public suspend fun ProducerScope<*>.awaitClose(block: () -> Unit = {}) { in <lambda>() 97 @BuilderInference block: suspend ProducerScope<E>.() -> Unit in produce() 119 @BuilderInference block: suspend ProducerScope<E>.() -> Unit in produce() 130 @BuilderInference block: suspend ProducerScope<E>.() -> Unit in produce() 142 ) : ChannelCoroutine<E>(parentContext, channel, active = true), ProducerScope<E> {
|
D | Broadcast.kt | 114 @BuilderInference block: suspend ProducerScope<E>.() -> Unit in broadcast() 130 ) : AbstractCoroutine<Unit>(parentContext, active), ProducerScope<E>, BroadcastChannel<E> by _chann… in <lambda>() 172 block: suspend ProducerScope<E>.() -> Unit
|
/external/kotlinx.coroutines/kotlinx-coroutines-core/common/src/flow/ |
D | Builders.kt | 265 public fun <T> channelFlow(@BuilderInference block: suspend ProducerScope<T>.() -> Unit): Flow<T> = in channelFlow() 331 public fun <T> callbackFlow(@BuilderInference block: suspend ProducerScope<T>.() -> Unit): Flow<T> … in channelFlow() 335 private val block: suspend ProducerScope<T>.() -> Unit, in channelFlow() 343 override suspend fun collectTo(scope: ProducerScope<T>) = in channelFlow() 351 private val block: suspend ProducerScope<T>.() -> Unit, 357 override suspend fun collectTo(scope: ProducerScope<T>) { in collectTo()
|
D | Channels.kt | 139 override suspend fun collectTo(scope: ProducerScope<T>) = in receiveAsFlow()
|
/external/kotlinx.coroutines/reactive/kotlinx-coroutines-reactor/src/ |
D | Flux.kt | 39 @BuilderInference block: suspend ProducerScope<T>.() -> Unit in <lambda>() 54 @BuilderInference block: suspend ProducerScope<T>.() -> Unit in flux() 61 @BuilderInference block: suspend ProducerScope<T>.() -> Unit in flux()
|
/external/kotlinx.coroutines/reactive/kotlinx-coroutines-rx2/src/ |
D | RxObservable.kt | 38 @BuilderInference block: suspend ProducerScope<T>.() -> Unit in <lambda>() 53 @BuilderInference block: suspend ProducerScope<T>.() -> Unit in rxObservable() 59 block: suspend ProducerScope<T>.() -> Unit in rxObservable() 74 ) : AbstractCoroutine<Unit>(parentContext, true), ProducerScope<T>, SelectClause2<T, SendChannel<T>…
|
D | RxFlowable.kt | 37 @BuilderInference block: suspend ProducerScope<T>.() -> Unit in rxFlowable() 52 @BuilderInference block: suspend ProducerScope<T>.() -> Unit
|
/external/kotlinx.coroutines/reactive/kotlinx-coroutines-reactive/src/ |
D | Publish.kt | 39 @BuilderInference block: suspend ProducerScope<T>.() -> Unit in <lambda>() 54 @BuilderInference block: suspend ProducerScope<T>.() -> Unit in publish() 63 block: suspend ProducerScope<T>.() -> Unit in publish() 83 ) : AbstractCoroutine<Unit>(parentContext, true), ProducerScope<T>, Subscription, SelectClause2<T, …
|
D | ReactiveFlow.kt | 111 override suspend fun collectTo(scope: ProducerScope<T>) = in <lambda>()
|
/external/kotlinx.coroutines/reactive/kotlinx-coroutines-rx3/src/ |
D | RxObservable.kt | 35 @BuilderInference block: suspend ProducerScope<T>.() -> Unit in <lambda>() 45 block: suspend ProducerScope<T>.() -> Unit in rxObservableInternal() 60 ) : AbstractCoroutine<Unit>(parentContext, true), ProducerScope<T>, SelectClause2<T, SendChannel<T>…
|
D | RxFlowable.kt | 34 @BuilderInference block: suspend ProducerScope<T>.() -> Unit in rxFlowable()
|
/external/kotlinx.coroutines/kotlinx-coroutines-core/common/src/flow/internal/ |
D | ChannelFlow.kt | 59 internal val collectToFun: suspend (ProducerScope<T>) -> Unit 108 protected abstract suspend fun collectTo(scope: ProducerScope<T>) in create() 168 protected override suspend fun collectTo(scope: ProducerScope<T>) = in collectTo()
|
D | Merge.kt | 55 override suspend fun collectTo(scope: ProducerScope<T>) { in collectTo() 93 override suspend fun collectTo(scope: ProducerScope<T>) { in additionalToStringProps()
|
D | FlowCoroutine.kt | 57 @BuilderInference block: suspend ProducerScope<T>.() -> Unit in flowProduce()
|
/external/kotlinx.coroutines/reactive/kotlinx-coroutines-jdk9/src/ |
D | Publish.kt | 34 @BuilderInference block: suspend ProducerScope<T>.() -> Unit in flowPublish()
|
/external/kotlinx.coroutines/reactive/kotlinx-coroutines-reactive/ |
D | README.md | 9 | [kotlinx.coroutines.reactive.publish] | `Publisher` | [ProducerScope] | C… 37 [ProducerScope]: https://kotlin.github.io/kotlinx.coroutines/kotlinx-coroutines-core/kotlinx.corout…
|
/external/kotlinx.coroutines/reactive/kotlinx-coroutines-rx3/ |
D | README.md | 12 | [rxObservable] | `Observable` | [ProducerScope] | Cold observable th… 13 | [rxFlowable] | `Flowable` | [ProducerScope] | Cold observable th… 55 [ProducerScope]: https://kotlin.github.io/kotlinx.coroutines/kotlinx-coroutines-core/kotlinx.corout…
|
/external/kotlinx.coroutines/reactive/kotlinx-coroutines-rx2/ |
D | README.md | 12 | [rxObservable] | `Observable` | [ProducerScope] | Cold observable th… 13 | [rxFlowable] | `Flowable` | [ProducerScope] | Cold observable th… 58 [ProducerScope]: https://kotlin.github.io/kotlinx.coroutines/kotlinx-coroutines-core/kotlinx.corout…
|
/external/kotlinx.coroutines/kotlinx-coroutines-core/common/test/channels/ |
D | ProduceTest.kt | 148 assertFailsWith<IllegalStateException> { (channel as ProducerScope<*>).awaitClose() } in <lambda>()
|
/external/kotlinx.coroutines/kotlinx-coroutines-core/ |
D | README.md | 11 …[kotlinx.coroutines.channels.ReceiveChannel] | [ProducerScope][kotlinx.coroutines.channels.Produce… 125 [kotlinx.coroutines.channels.ProducerScope]: https://kotlin.github.io/kotlinx.coroutines/kotlinx-co…
|
/external/kotlinx.coroutines/kotlinx-coroutines-core/common/ |
D | README.md | 11 …[kotlinx.coroutines.channels.ReceiveChannel] | [ProducerScope][kotlinx.coroutines.channels.Produce… 136 [kotlinx.coroutines.channels.ProducerScope]: https://kotlin.github.io/kotlinx.coroutines/kotlinx-co…
|
/external/kotlinx.coroutines/reactive/kotlinx-coroutines-reactive/api/ |
D | kotlinx-coroutines-reactive.api | 51 …e : kotlinx/coroutines/AbstractCoroutine, kotlinx/coroutines/channels/ProducerScope, kotlinx/corou…
|
/external/kotlinx.coroutines/kotlinx-coroutines-core/api/ |
D | kotlinx-coroutines-core.api | 775 …public static final fun awaitClose (Lkotlinx/coroutines/channels/ProducerScope;Lkotlin/jvm/functio… 776 …public static synthetic fun awaitClose$default (Lkotlinx/coroutines/channels/ProducerScope;Lkotlin… 783 public abstract interface class kotlinx/coroutines/channels/ProducerScope : kotlinx/coroutines/Coro… 1128 …protected abstract fun collectTo (Lkotlinx/coroutines/channels/ProducerScope;Lkotlin/coroutines/Co…
|