Uses of Interface
io.reactivex.rxjava3.core.CompletableOperator
-
Packages that use CompletableOperator Package Description io.reactivex.rxjava3.core Base reactive classes:Flowable,Observable,Single,MaybeandCompletable; 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 CompletableCompletable. lift(@NonNull CompletableOperator onLift)This method requires advanced knowledge about building operators, please consider other standard composition methods first; Returns aCompletablewhich, when subscribed to, invokes theapply(CompletableObserver)method of the providedCompletableOperatorfor each individual downstreamCompletableand allows the insertion of a custom operator by accessing the downstream'sCompletableObserverduring 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) CompletableOperatorCompletableLift. onLiftConstructors in io.reactivex.rxjava3.internal.operators.completable with parameters of type CompletableOperator Constructor Description CompletableLift(CompletableSource source, CompletableOperator onLift)
-