.kotlinx.kotlinx-coroutines-rx1.0.26.1-eap13.source-code.RxConvert.kt Maven / Gradle / Ivy
/*
* Copyright 2016-2018 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license.
*/
package kotlinx.coroutines.rx1
import kotlinx.coroutines.*
import kotlinx.coroutines.channels.*
import rx.*
import kotlin.coroutines.*
/**
* Converts this job to the hot reactive completable that signals
* with [onCompleted][CompletableSubscriber.onCompleted] when the corresponding job completes.
*
* Every subscriber gets the signal at the same time.
* Unsubscribing from the resulting completable **does not** affect the original job in any way.
*
* @param context -- the coroutine context from which the resulting completable is going to be signalled
*/
public fun Job.asCompletable(context: CoroutineContext): Completable = GlobalScope.rxCompletable(context) {
[email protected]()
}
/**
* Converts this deferred value to the hot reactive single that signals either
* [onSuccess][SingleSubscriber.onSuccess] or [onError][SingleSubscriber.onError].
*
* Every subscriber gets the same completion value.
* Unsubscribing from the resulting single **does not** affect the original deferred value in any way.
*
* @param context -- the coroutine context from which the resulting single is going to be signalled
*/
public fun Deferred.asSingle(context: CoroutineContext): Single = GlobalScope.rxSingle(context) {
[email protected]()
}
/**
* Converts a stream of elements received from the channel to the hot reactive observable.
*
* Every subscriber receives values from this channel in **fan-out** fashion. If the are multiple subscribers,
* they'll receive values in round-robin way.
*
* @param context -- the coroutine context from which the resulting observable is going to be signalled
*/
public fun ReceiveChannel.asObservable(context: CoroutineContext): Observable = GlobalScope.rxObservable(context) {
for (t in this@asObservable)
send(t)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy