Uses of Interface
io.reactivex.rxjava3.core.SingleOperator
Packages that use SingleOperator
Package
Description
Base reactive classes:
Flowable, Observable,
Single, Maybe and
Completable; base reactive consumers;
other common base interfaces.-
Uses of SingleOperator in io.reactivex.rxjava3.core
Methods in io.reactivex.rxjava3.core with parameters of type SingleOperatorModifier and TypeMethodDescriptionThis method requires advanced knowledge about building operators, please consider other standard composition methods first; Returns aSinglewhich, when subscribed to, invokes theapply(SingleObserver)method of the providedSingleOperatorfor each individual downstreamSingleand allows the insertion of a custom operator by accessing the downstream'sSingleObserverduring 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 SingleOperatorModifier and TypeFieldDescription(package private) final SingleOperator<? extends R, ? super T> SingleLift.onLiftConstructors in io.reactivex.rxjava3.internal.operators.single with parameters of type SingleOperatorModifierConstructorDescriptionSingleLift(SingleSource<T> source, SingleOperator<? extends R, ? super T> onLift)