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 anObservablewhich, when subscribed to, invokes theapply(Observer)method of the providedObservableOperatorfor each individual downstreamObserverand allows the insertion of a custom operator by accessing the downstream'sObserverduring 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.operatorThe actual operator.Constructors in io.reactivex.rxjava3.internal.operators.observable with parameters of type ObservableOperatorModifierConstructorDescriptionObservableLift(ObservableSource<T> source, ObservableOperator<? extends R, ? super T> operator)