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.
toV1Operator(FlowableOperator<R, T>) - Static method in class hu.akarnokd.rxjava.interop.RxJavaInterop
Convert the 2.x FlowableOperator into a 1.x Observable.Operator.
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.
toV1Subject(Subject<T>) - Static method in class hu.akarnokd.rxjava.interop.RxJavaInterop
Wraps a 2.x Subject into a 1.x Subject.
toV1Subject(FlowableProcessor<T>) - Static method in class hu.akarnokd.rxjava.interop.RxJavaInterop
Wraps a 2.x FlowableProcessor into a 1.x Subject.
toV1Transformer(FlowableTransformer<T, R>) - Static method in class hu.akarnokd.rxjava.interop.RxJavaInterop
Convert the 2.x FlowableTransformer into a 1.x Observable.Transformer.
toV1Transformer(SingleTransformer<T, R>) - Static method in class hu.akarnokd.rxjava.interop.RxJavaInterop
Convert the 2.x SingleTransformer into a 1.x Single.Transformer.
toV1Transformer(CompletableTransformer) - Static method in class hu.akarnokd.rxjava.interop.RxJavaInterop
Convert the 2.x CompletableTransformer into a 1.x Completable.Transformer.
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.
toV2Operator(Observable.Operator<R, T>) - Static method in class hu.akarnokd.rxjava.interop.RxJavaInterop
Convert the 1.x Observable.Operator into a 2.x FlowableOperator.
toV2Processor(Subject<T, T>) - Static method in class hu.akarnokd.rxjava.interop.RxJavaInterop
Wraps a 1.x Subject into a 2.x FlowableProcessor.
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.
toV2Subject(Subject<T, T>) - Static method in class hu.akarnokd.rxjava.interop.RxJavaInterop
Wraps a 1.x Subject into a 2.x Subject.
toV2Transformer(Observable.Transformer<T, R>) - Static method in class hu.akarnokd.rxjava.interop.RxJavaInterop
Convert the 1.x Observable.Transformer into a 2.x FlowableTransformer.
toV2Transformer(Single.Transformer<T, R>) - Static method in class hu.akarnokd.rxjava.interop.RxJavaInterop
Convert the 1.x Single.Transformer into a 2.x SingleTransformer.
toV2Transformer(Completable.Transformer) - Static method in class hu.akarnokd.rxjava.interop.RxJavaInterop
Convert the 1.x Completable.Transformer into a 2.x CompletableTransformer.
H R T 
Skip navigation links