Skip navigation links
H R T 

H

hu.akarnokd.rxjava.interop - package hu.akarnokd.rxjava.interop
 

R

RxJavaInterop - Class in hu.akarnokd.rxjava.interop
Conversion methods for converting between 1.x and 2.x reactive types, composing backpressure and cancellation through.

T

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.
toV1Completable(MaybeSource<T>) - Static method in class hu.akarnokd.rxjava.interop.RxJavaInterop
Converts an 2.x MaybeSource (the base type of 2.x Maybe) into a 1.x Completable, composing cancellation (unsubscription) through and ignoring the success value.
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.
toV1Single(MaybeSource<T>) - Static method in class hu.akarnokd.rxjava.interop.RxJavaInterop
Converts an 2.x MaybeSource (the base type of 2.x Maybe) into a 1.x Single, composing cancellation (unsubscription) through and signalling NoSuchElementException if the MaybeSource is empty.
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.
toV2Maybe(Completable) - Static method in class hu.akarnokd.rxjava.interop.RxJavaInterop
Converts an 1.x Completable into a 2.x Maybe, composing cancellation (unsubscription) through.
toV2Maybe(Single<T>) - Static method in class hu.akarnokd.rxjava.interop.RxJavaInterop
Converts an 1.x Single into a 2.x Maybe, composing 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.
H R T 
Skip navigation links