Uses of Interface
io.reactivex.rxjava3.core.CompletableOperator
Packages that use CompletableOperator
Package
Description
Base reactive classes:
Flowable
, Observable
,
Single
, Maybe
and
Completable
; base reactive consumers;
other common base interfaces.-
Uses of CompletableOperator in io.reactivex.rxjava3.core
Methods in io.reactivex.rxjava3.core with parameters of type CompletableOperatorModifier and TypeMethodDescriptionfinal @NonNull Completable
Completable.lift
(@NonNull CompletableOperator onLift) This method requires advanced knowledge about building operators, please consider other standard composition methods first; Returns aCompletable
which, when subscribed to, invokes theapply(CompletableObserver)
method of the providedCompletableOperator
for each individual downstreamCompletable
and allows the insertion of a custom operator by accessing the downstream'sCompletableObserver
during this subscription phase and providing a newCompletableObserver
, containing the custom operator's intended business logic, that will be used in the subscription process going further upstream. -
Uses of CompletableOperator in io.reactivex.rxjava3.internal.operators.completable
Fields in io.reactivex.rxjava3.internal.operators.completable declared as CompletableOperatorModifier and TypeFieldDescription(package private) final CompletableOperator
CompletableLift.onLift
Constructors in io.reactivex.rxjava3.internal.operators.completable with parameters of type CompletableOperatorModifierConstructorDescriptionCompletableLift
(CompletableSource source, CompletableOperator onLift)