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