- toV1Completable(CompletableSource) - Static method in class hu.akarnokd.rxjava.interop.RxJavaInterop
-
Converts an 2.x CompletableSource (the base type of 2.x Completable) into a
1.x Completable, composing cancellation (unsubscription) through.
- toV1Observable(Publisher<T>) - Static method in class hu.akarnokd.rxjava.interop.RxJavaInterop
-
Converts a Reactive-Streams Publisher of any kind (the base type of 2.x Flowable)
into an 1.x Observable, composing the backpressure and cancellation
(unsubscription) through.
- toV1Observable(ObservableSource<T>, BackpressureStrategy) - Static method in class hu.akarnokd.rxjava.interop.RxJavaInterop
-
Converts a 2.x ObservableSource (the base type of 2.x Observable) into an 1.x
Observable instance, applying the specified backpressure strategy and composing
the cancellation (unsubscription) through.
- toV1Single(SingleSource<T>) - Static method in class hu.akarnokd.rxjava.interop.RxJavaInterop
-
Converts an 2.x SingleSource (the base type of 2.x Single) into a
1.x Single, composing cancellation (unsubscription) through.
- toV2Completable(Completable) - Static method in class hu.akarnokd.rxjava.interop.RxJavaInterop
-
Converts an 1.x Completable into a 2.x Completable, composing cancellation (unsubscription) through.
- toV2Flowable(Observable<T>) - Static method in class hu.akarnokd.rxjava.interop.RxJavaInterop
-
Converts an 1.x Observable into a 2.x Flowable, composing the backpressure and
cancellation (unsubscription) through.
- toV2Observable(Observable<T>) - Static method in class hu.akarnokd.rxjava.interop.RxJavaInterop
-
Converts an 1.x Observable into a 2.x Observable, cancellation (unsubscription) through.
- toV2Single(Single<T>) - Static method in class hu.akarnokd.rxjava.interop.RxJavaInterop
-
Converts an 1.x Single into a 2.x Single, composing cancellation (unsubscription) through.