H R S T
All Classes All Packages
All Classes All Packages
All Classes All Packages
H
- hu.akarnokd.rxjava3.bridge - package hu.akarnokd.rxjava3.bridge
R
- RxJavaBridge - Class in hu.akarnokd.rxjava3.bridge
-
Utility class to convert between RxJava 2 and RxJava 3 components.
S
- startUsingV2Schedulers() - Static method in class hu.akarnokd.rxjava3.bridge.RxJavaBridge
-
Wraps all standard V2 Schedulers into V3 Schedulers and installs scheduler hooks in the V3 RxJavaPlugins so that both RxJava 2 and RxJava 3 use the same backing scheduler implementations.
- startUsingV3Schedulers() - Static method in class hu.akarnokd.rxjava3.bridge.RxJavaBridge
-
Wraps all standard V3 Schedulers into V2 Schedulers and installs scheduler hooks in the V2 RxJavaPlugins so that both RxJava 2 and RxJava 3 use the same backing scheduler implementations.
- stopUsingV2Schedulers() - Static method in class hu.akarnokd.rxjava3.bridge.RxJavaBridge
-
Stop using the V2 standard schedulers by resetting the V3 scheduler hooks to their default (null) handlers in the V3 RxJavaPlugins.
- stopUsingV3Schedulers() - Static method in class hu.akarnokd.rxjava3.bridge.RxJavaBridge
-
Stop using the V3 standard schedulers by resetting the V2 scheduler hooks to their default (null) handlers in the V2 RxJavaPlugins.
T
- toV2Completable() - Static method in class hu.akarnokd.rxjava3.bridge.RxJavaBridge
-
Returns the shared singleton instance of a V3 Completable converter that when applied in V3
Completable.to(io.reactivex.rxjava3.core.CompletableConverter)-based fluent conversions, produces a V2 Completable instance. - toV2Completable(Completable) - Static method in class hu.akarnokd.rxjava3.bridge.RxJavaBridge
-
Wraps a V3 Completable and exposes it as a V2 Completable.
- toV2Disposable(Disposable) - Static method in class hu.akarnokd.rxjava3.bridge.RxJavaBridge
-
Wraps a V3 Disposable and exposes it as a V2 Disposable.
- toV2Flowable() - Static method in class hu.akarnokd.rxjava3.bridge.RxJavaBridge
-
Returns the shared singleton instance of a V3 Flowable converter that when applied in V3
Flowable.to(io.reactivex.rxjava3.core.FlowableConverter)-based fluent conversions, produces a V2 Flowable instance. - toV2Flowable(Flowable<T>) - Static method in class hu.akarnokd.rxjava3.bridge.RxJavaBridge
-
Wraps a V3 Flowable and exposes it as a V2 Flowable.
- toV2Maybe() - Static method in class hu.akarnokd.rxjava3.bridge.RxJavaBridge
-
Returns the shared singleton instance of a V3 Maybe converter that when applied in V3
Maybe.to(io.reactivex.rxjava3.core.MaybeConverter)-based fluent conversions, produces a V2 Maybe instance. - toV2Maybe(Maybe<T>) - Static method in class hu.akarnokd.rxjava3.bridge.RxJavaBridge
-
Wraps a V3 Maybe and exposes it as a V2 Maybe.
- toV2Observable() - Static method in class hu.akarnokd.rxjava3.bridge.RxJavaBridge
-
Returns the shared singleton instance of a V3 Observable converter that when applied in V3
Observable.to(io.reactivex.rxjava3.core.ObservableConverter)-based fluent conversions, produces a V2 Observable instance. - toV2Observable(Observable<T>) - Static method in class hu.akarnokd.rxjava3.bridge.RxJavaBridge
-
Wraps a V3 Observable and exposes it as a V2 Observable.
- toV2Scheduler(Scheduler) - Static method in class hu.akarnokd.rxjava3.bridge.RxJavaBridge
-
Wraps a V3 Scheduler and exposes it as a V2 Scheduler.
- toV2Single() - Static method in class hu.akarnokd.rxjava3.bridge.RxJavaBridge
-
Returns the shared singleton instance of a V3 Single converter that when applied in V3
Single.to(io.reactivex.rxjava3.core.SingleConverter)-based fluent conversions, produces a V2 Single instance. - toV2Single(Single<T>) - Static method in class hu.akarnokd.rxjava3.bridge.RxJavaBridge
-
Wraps a V3 Single and exposes it as a V2 Single.
- toV3Completable() - Static method in class hu.akarnokd.rxjava3.bridge.RxJavaBridge
-
Returns the shared singleton instance of a V2 Completable converter that when applied in V2
Completable.as(io.reactivex.CompletableConverter)-based fluent conversions, produces a V3 Completable instance. - toV3Completable(Completable) - Static method in class hu.akarnokd.rxjava3.bridge.RxJavaBridge
-
Wraps a V2 Completable and exposes it as a V3 Completable.
- toV3Disposable(Disposable) - Static method in class hu.akarnokd.rxjava3.bridge.RxJavaBridge
-
Wraps a V2 Disposable and exposes it as a V3 Disposable.
- toV3Flowable() - Static method in class hu.akarnokd.rxjava3.bridge.RxJavaBridge
-
Returns the shared singleton instance of a V2 Flowable converter that when applied in V2
Flowable.as(io.reactivex.FlowableConverter)-based fluent conversions, produces a V3 Flowable instance. - toV3Flowable(Flowable<T>) - Static method in class hu.akarnokd.rxjava3.bridge.RxJavaBridge
-
Wraps a V2 Flowable and exposes it as a V3 Flowable.
- toV3Maybe() - Static method in class hu.akarnokd.rxjava3.bridge.RxJavaBridge
-
Returns the shared singleton instance of a V2 Maybe converter that when applied in V2
Maybe.as(io.reactivex.MaybeConverter)-based fluent conversions, produces a V3 Maybe instance. - toV3Maybe(Maybe<T>) - Static method in class hu.akarnokd.rxjava3.bridge.RxJavaBridge
-
Wraps a V2 Maybe and exposes it as a V3 Maybe.
- toV3Observable() - Static method in class hu.akarnokd.rxjava3.bridge.RxJavaBridge
-
Returns the shared singleton instance of a V2 Observable converter that when applied in V2
Observable.as(io.reactivex.ObservableConverter)-based fluent conversions, produces a V3 Observable instance. - toV3Observable(Observable<T>) - Static method in class hu.akarnokd.rxjava3.bridge.RxJavaBridge
-
Wraps a V2 Observable and exposes it as a V3 Observable.
- toV3Scheduler(Scheduler) - Static method in class hu.akarnokd.rxjava3.bridge.RxJavaBridge
-
Wraps a V2 Scheduler and exposes it as a V3 Scheduler.
- toV3Single() - Static method in class hu.akarnokd.rxjava3.bridge.RxJavaBridge
-
Returns the shared singleton instance of a V2 Single converter that when applied in V2
Single.as(io.reactivex.SingleConverter)-based fluent conversions, produces a V3 Single instance. - toV3Single(Single<T>) - Static method in class hu.akarnokd.rxjava3.bridge.RxJavaBridge
-
Wraps a V2 Single and exposes it as a V3 Single.
All Classes All Packages