Uses of Interface
io.reactivex.rxjava3.core.CompletableOperator
-
Packages that use CompletableOperator 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.completable -
-
Uses of CompletableOperator in io.reactivex.rxjava3.core
Methods in io.reactivex.rxjava3.core with parameters of type CompletableOperator Modifier and Type Method Description @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 CompletableOperator Modifier and Type Field Description (package private) CompletableOperator
CompletableLift. onLift
Constructors in io.reactivex.rxjava3.internal.operators.completable with parameters of type CompletableOperator Constructor Description CompletableLift(CompletableSource source, CompletableOperator onLift)
-