Uses of Interface
io.reactivex.rxjava3.core.FlowableOperator
-
Packages that use FlowableOperator 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.flowable -
-
Uses of FlowableOperator in io.reactivex.rxjava3.core
Methods in io.reactivex.rxjava3.core with parameters of type FlowableOperator Modifier and Type Method Description <@NonNull R>
@NonNull Flowable<R>Flowable. lift(@NonNull FlowableOperator<? extends @NonNull R,? super @NonNull T> lifter)
This method requires advanced knowledge about building operators, please consider other standard composition methods first; Returns aFlowable
which, when subscribed to, invokes theapply(Subscriber)
method of the providedFlowableOperator
for each individual downstreamSubscriber
and allows the insertion of a custom operator by accessing the downstream'sSubscriber
during this subscription phase and providing a newSubscriber
, containing the custom operator's intended business logic, that will be used in the subscription process going further upstream. -
Uses of FlowableOperator in io.reactivex.rxjava3.internal.operators.flowable
Fields in io.reactivex.rxjava3.internal.operators.flowable declared as FlowableOperator Modifier and Type Field Description (package private) FlowableOperator<? extends R,? super T>
FlowableLift. operator
The actual operator.Constructors in io.reactivex.rxjava3.internal.operators.flowable with parameters of type FlowableOperator Constructor Description FlowableLift(Flowable<T> source, FlowableOperator<? extends R,? super T> operator)
-