Uses of Interface
io.reactivex.rxjava3.core.ObservableOperator
-
Packages that use ObservableOperator Package Description io.reactivex.rxjava3.core Base reactive classes:Flowable
,Observable
,Single
,Maybe
andCompletable
; base reactive consumers; other common base interfaces.io.reactivex.rxjava3.internal.operators.observable -
-
Uses of ObservableOperator in io.reactivex.rxjava3.core
Methods in io.reactivex.rxjava3.core with parameters of type ObservableOperator Modifier and Type Method Description <@NonNull R>
@NonNull Observable<R>Observable. lift(@NonNull ObservableOperator<? extends @NonNull R,? super @NonNull T> lifter)
This method requires advanced knowledge about building operators, please consider other standard composition methods first; Returns anObservable
which, when subscribed to, invokes theapply(Observer)
method of the providedObservableOperator
for each individual downstreamObserver
and allows the insertion of a custom operator by accessing the downstream'sObserver
during this subscription phase and providing a newObserver
, containing the custom operator's intended business logic, that will be used in the subscription process going further upstream. -
Uses of ObservableOperator in io.reactivex.rxjava3.internal.operators.observable
Fields in io.reactivex.rxjava3.internal.operators.observable declared as ObservableOperator Modifier and Type Field Description (package private) ObservableOperator<? extends R,? super T>
ObservableLift. operator
The actual operator.Constructors in io.reactivex.rxjava3.internal.operators.observable with parameters of type ObservableOperator Constructor Description ObservableLift(ObservableSource<T> source, ObservableOperator<? extends R,? super T> operator)
-