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