reactive/kotlinx-coroutines-rx2/src/RxFlowable.kt [30:37]: - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - public fun rxFlowable( context: CoroutineContext = EmptyCoroutineContext, @BuilderInference block: suspend ProducerScope.() -> Unit ): Flowable { require(context[Job] === null) { "Flowable context cannot contain job in it." + "Its lifecycle should be managed via Disposable handle. Had $context" } return Flowable.fromPublisher(publishInternal(GlobalScope, context, RX_HANDLER, block)) } - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - reactive/kotlinx-coroutines-rx3/src/RxFlowable.kt [27:34]: - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - public fun rxFlowable( context: CoroutineContext = EmptyCoroutineContext, @BuilderInference block: suspend ProducerScope.() -> Unit ): Flowable { require(context[Job] === null) { "Flowable context cannot contain job in it." + "Its lifecycle should be managed via Disposable handle. Had $context" } return Flowable.fromPublisher(publishInternal(GlobalScope, context, RX_HANDLER, block)) } - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -