Uses of Interface
io.reactivex.rxjava3.core.ObservableOperator
Packages that use ObservableOperator
Package
Description
Base reactive classes:
Flowable
, Observable
,
Single
, Maybe
and
Completable
; base reactive consumers;
other common base interfaces.-
Uses of ObservableOperator in io.reactivex.rxjava3.core
Methods in io.reactivex.rxjava3.core with parameters of type ObservableOperatorModifier and TypeMethodDescriptionfinal <@NonNull R>
@NonNull Observable<R> 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 ObservableOperatorModifier and TypeFieldDescription(package private) final ObservableOperator
<? extends R, ? super T> ObservableLift.operator
The actual operator.Constructors in io.reactivex.rxjava3.internal.operators.observable with parameters of type ObservableOperatorModifierConstructorDescriptionObservableLift
(ObservableSource<T> source, ObservableOperator<? extends R, ? super T> operator)