Uses of Interface
io.reactivex.rxjava3.core.MaybeOperator
Packages that use MaybeOperator
Package
Description
Base reactive classes:
Flowable
, Observable
,
Single
, Maybe
and
Completable
; base reactive consumers;
other common base interfaces.-
Uses of MaybeOperator in io.reactivex.rxjava3.core
Methods in io.reactivex.rxjava3.core with parameters of type MaybeOperatorModifier and TypeMethodDescriptionThis 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 MaybeOperatorModifier and TypeFieldDescription(package private) final MaybeOperator
<? extends R, ? super T> MaybeLift.operator
Constructors in io.reactivex.rxjava3.internal.operators.maybe with parameters of type MaybeOperatorModifierConstructorDescriptionMaybeLift
(MaybeSource<T> source, MaybeOperator<? extends R, ? super T> operator)