Uses of Interface
io.reactivex.rxjava3.core.CompletableSource
-
Packages that use CompletableSource Package Description io.reactivex.rxjava3.core Base reactive classes:Flowable,Observable,Single,MaybeandCompletable; base reactive consumers; other common base interfaces.io.reactivex.rxjava3.internal.fuseable Base interfaces and types for supporting operator-fusion.io.reactivex.rxjava3.internal.jdk8 io.reactivex.rxjava3.internal.operators.completable io.reactivex.rxjava3.internal.operators.flowable io.reactivex.rxjava3.internal.operators.maybe io.reactivex.rxjava3.internal.operators.mixed io.reactivex.rxjava3.internal.operators.observable io.reactivex.rxjava3.internal.operators.single io.reactivex.rxjava3.internal.schedulers io.reactivex.rxjava3.subjects Classes representing so-called hot sources, aka subjects, that implement a base reactive class and the respective consumer type at once to allow forms of multicasting events to multiple consumers as well as consuming another base reactive type of their kind. -
-
Uses of CompletableSource in io.reactivex.rxjava3.core
Classes in io.reactivex.rxjava3.core that implement CompletableSource Modifier and Type Class Description classCompletableTheCompletableclass represents a deferred computation without any value but only indication for completion or exception.Methods in io.reactivex.rxjava3.core that return CompletableSource Modifier and Type Method Description @NonNull CompletableSourceCompletableTransformer. apply(@NonNull Completable upstream)Applies a function to the upstreamCompletableand returns aCompletableSource.Methods in io.reactivex.rxjava3.core with parameters of type CompletableSource Modifier and Type Method Description static @NonNull CompletableCompletable. ambArray(@NonNull CompletableSource... sources)Returns aCompletablewhich terminates as soon as one of the sourceCompletables terminates (normally or with an error) and disposes all otherCompletables.@NonNull CompletableCompletable. ambWith(@NonNull CompletableSource other)Returns aCompletablethat emits the a terminated event of either thisCompletableor the otherCompletableSource, whichever fires first.@NonNull CompletableCompletable. andThen(@NonNull CompletableSource next)static @NonNull CompletableCompletable. concatArray(@NonNull CompletableSource... sources)Returns aCompletablewhich completes only when all sources complete, one after another.static @NonNull CompletableCompletable. concatArrayDelayError(@NonNull CompletableSource... sources)Returns aCompletablewhich completes only when all sources complete, one after another.@NonNull CompletableCompletable. concatWith(@NonNull CompletableSource other)Concatenates thisCompletablewith anotherCompletableSource.@NonNull Flowable<T>Flowable. concatWith(@NonNull CompletableSource other)Returns aFlowablethat emits items from thisFlowableand when it completes normally, the otherCompletableSourceis subscribed to and the returnedFlowableemits its terminal events.@NonNull Observable<T>Observable. concatWith(@NonNull CompletableSource other)Returns anObservablethat emits items from the currentObservableand when it completes normally, the otherCompletableSourceis subscribed to and the returnedObservableemits its terminal events.@NonNull Single<T>Single. delaySubscription(@NonNull CompletableSource subscriptionIndicator)Delays the actual subscription to the currentSingleuntil the given otherCompletableSourcecompletes.static <@NonNull T>
@NonNull Flowable<T>Flowable. fromCompletable(@NonNull CompletableSource completableSource)Wraps aCompletableSourceinto aFlowable.static <@NonNull T>
@NonNull Maybe<T>Maybe. fromCompletable(@NonNull CompletableSource completableSource)Wraps aCompletableSourceinto aMaybe.static <@NonNull T>
@NonNull Observable<T>Observable. fromCompletable(@NonNull CompletableSource completableSource)Wraps aCompletableSourceinto anObservable.static @NonNull CompletableCompletable. mergeArray(@NonNull CompletableSource... sources)Returns aCompletableinstance that subscribes to all sources at once and completes only when all sourceCompletableSources complete or one of them emits an error.static @NonNull CompletableCompletable. mergeArrayDelayError(@NonNull CompletableSource... sources)Returns aCompletablethat subscribes to allCompletableSources in the source array and delays any error emitted by any of the innerCompletableSources until all of them terminate in a way or another.@NonNull CompletableCompletable. mergeWith(@NonNull CompletableSource other)Returns aCompletablewhich subscribes to this and the otherCompletableSourceand completes when both of them complete or one emits an error.@NonNull Flowable<T>Flowable. mergeWith(@NonNull CompletableSource other)Relays the items of thisFlowableand completes only when the otherCompletableSourcecompletes as well.@NonNull Observable<T>Observable. mergeWith(@NonNull CompletableSource other)Relays the items of the currentObservableand completes only when the otherCompletableSourcecompletes as well.@NonNull CompletableCompletable. onErrorResumeWith(@NonNull CompletableSource fallback)Resumes the flow with the givenCompletableSourcewhen the currentCompletablefails instead of signaling the error viaonError.static @NonNull Single<java.lang.Boolean>Completable. sequenceEqual(@NonNull CompletableSource source1, @NonNull CompletableSource source2)@NonNull CompletableCompletable. startWith(@NonNull CompletableSource other)Returns aCompletablewhich first runs the otherCompletableSourcethen the currentCompletableif the other completed normally.@NonNull Flowable<T>Flowable. startWith(@NonNull CompletableSource other)Returns aFlowablewhich first runs the otherCompletableSourcethen the currentFlowableif the other completed normally.@NonNull Flowable<T>Maybe. startWith(@NonNull CompletableSource other)Returns aFlowablewhich first runs the otherCompletableSourcethen the currentMaybeif the other completed normally.@NonNull Observable<T>Observable. startWith(@NonNull CompletableSource other)Returns anObservablewhich first runs the otherCompletableSourcethen the currentObservableif the other completed normally.@NonNull Flowable<T>Single. startWith(@NonNull CompletableSource other)Returns aFlowablewhich first runs the otherCompletableSourcethen the currentSingleif the other completed normally.@NonNull CompletableCompletable. takeUntil(@NonNull CompletableSource other)Terminates the downstream if this or the otherCompletableterminates (wins the termination race) while disposing the connection to the losing source.@NonNull Single<T>Single. takeUntil(@NonNull CompletableSource other)Returns aSinglethat emits the item emitted by the currentSingleuntil aCompletableSourceterminates.@NonNull CompletableCompletable. timeout(long timeout, @NonNull java.util.concurrent.TimeUnit unit, @NonNull CompletableSource fallback)Returns aCompletablethat runs thisCompletableand switches to the otherCompletableSourcein case thisCompletabledoesn't complete within the given time.@NonNull CompletableCompletable. timeout(long timeout, @NonNull java.util.concurrent.TimeUnit unit, @NonNull Scheduler scheduler, @NonNull CompletableSource fallback)Returns aCompletablethat runs thisCompletableand switches to the otherCompletableSourcein case thisCompletabledoesn't complete within the given time while "waiting" on the specifiedScheduler.private @NonNull CompletableCompletable. timeout0(long timeout, java.util.concurrent.TimeUnit unit, Scheduler scheduler, CompletableSource fallback)Returns aCompletablethat runs thisCompletableand optionally switches to the otherCompletableSourcein case thisCompletabledoesn't complete within the given time while "waiting" on the specifiedScheduler.static @NonNull CompletableCompletable. unsafeCreate(@NonNull CompletableSource onSubscribe)Constructs aCompletableinstance by wrapping the given source callback without any safeguards; you should manage the lifecycle and response to downstream disposal.static @NonNull CompletableCompletable. wrap(@NonNull CompletableSource source)Method parameters in io.reactivex.rxjava3.core with type arguments of type CompletableSource Modifier and Type Method Description static @NonNull CompletableCompletable. amb(@NonNull java.lang.Iterable<? extends CompletableSource> sources)Returns aCompletablewhich terminates as soon as one of the sourceCompletables in theIterablesequence terminates (normally or with an error) and disposes all otherCompletables.static @NonNull CompletableCompletable. concat(@NonNull java.lang.Iterable<? extends CompletableSource> sources)Returns aCompletablewhich completes only when all sources complete, one after another.static @NonNull CompletableCompletable. concat(@NonNull org.reactivestreams.Publisher<? extends CompletableSource> sources)Returns aCompletablewhich completes only when all sources complete, one after another.static @NonNull CompletableCompletable. concat(@NonNull org.reactivestreams.Publisher<? extends CompletableSource> sources, int prefetch)Returns aCompletablewhich completes only when all sources complete, one after another.static @NonNull CompletableCompletable. concatDelayError(@NonNull java.lang.Iterable<? extends CompletableSource> sources)Returns aCompletablewhich completes only when all sources complete, one after another.static @NonNull CompletableCompletable. concatDelayError(@NonNull org.reactivestreams.Publisher<? extends CompletableSource> sources)Returns aCompletablewhich completes only when all sources complete, one after another.static @NonNull CompletableCompletable. concatDelayError(@NonNull org.reactivestreams.Publisher<? extends CompletableSource> sources, int prefetch)Returns aCompletablewhich completes only when all sources complete, one after another.@NonNull CompletableFlowable. concatMapCompletable(@NonNull Function<? super @NonNull T,? extends CompletableSource> mapper)Maps the upstream items intoCompletableSources and subscribes to them one after the other completes.@NonNull CompletableFlowable. concatMapCompletable(@NonNull Function<? super @NonNull T,? extends CompletableSource> mapper, int prefetch)Maps the upstream items intoCompletableSources and subscribes to them one after the other completes.@NonNull CompletableMaybe. concatMapCompletable(@NonNull Function<? super @NonNull T,? extends CompletableSource> mapper)Returns aCompletablethat completes based on applying a specified function to the item emitted by the currentMaybe, where that function returns aCompletable.@NonNull CompletableObservable. concatMapCompletable(@NonNull Function<? super @NonNull T,? extends CompletableSource> mapper)Maps each element of the currentObservableintoCompletableSources, subscribes to them one at a time in order and waits until the upstream and allCompletableSources complete.@NonNull CompletableObservable. concatMapCompletable(@NonNull Function<? super @NonNull T,? extends CompletableSource> mapper, int capacityHint)Maps each element of the currentObservableintoCompletableSources, subscribes to them one at a time in order and waits until the upstream and allCompletableSources complete.@NonNull CompletableSingle. concatMapCompletable(@NonNull Function<? super @NonNull T,? extends CompletableSource> mapper)Returns aCompletablethat completes based on applying a specified function to the item emitted by the currentSingle, where that function returns aCompletableSource.@NonNull CompletableFlowable. concatMapCompletableDelayError(@NonNull Function<? super @NonNull T,? extends CompletableSource> mapper)Maps the upstream items intoCompletableSources and subscribes to them one after the other terminates, delaying all errors till both thisFlowableand all innerCompletableSources terminate.@NonNull CompletableFlowable. concatMapCompletableDelayError(@NonNull Function<? super @NonNull T,? extends CompletableSource> mapper, boolean tillTheEnd)Maps the upstream items intoCompletableSources and subscribes to them one after the other terminates, optionally delaying all errors till both thisFlowableand all innerCompletableSources terminate.@NonNull CompletableFlowable. concatMapCompletableDelayError(@NonNull Function<? super @NonNull T,? extends CompletableSource> mapper, boolean tillTheEnd, int prefetch)Maps the upstream items intoCompletableSources and subscribes to them one after the other terminates, optionally delaying all errors till both thisFlowableand all innerCompletableSources terminate.@NonNull CompletableObservable. concatMapCompletableDelayError(@NonNull Function<? super @NonNull T,? extends CompletableSource> mapper)Maps the upstream items intoCompletableSources and subscribes to them one after the other terminates, delaying all errors till both the currentObservableand all innerCompletableSources terminate.@NonNull CompletableObservable. concatMapCompletableDelayError(@NonNull Function<? super @NonNull T,? extends CompletableSource> mapper, boolean tillTheEnd)Maps the upstream items intoCompletableSources and subscribes to them one after the other terminates, optionally delaying all errors till both the currentObservableand all innerCompletableSources terminate.@NonNull CompletableObservable. concatMapCompletableDelayError(@NonNull Function<? super @NonNull T,? extends CompletableSource> mapper, boolean tillTheEnd, int bufferSize)Maps the upstream items intoCompletableSources and subscribes to them one after the other terminates, optionally delaying all errors till both the currentObservableand all innerCompletableSources terminate.static @NonNull CompletableCompletable. defer(@NonNull Supplier<? extends @NonNull CompletableSource> supplier)Defers the subscription to aCompletableinstance returned by a supplier.@NonNull CompletableFlowable. flatMapCompletable(@NonNull Function<? super @NonNull T,? extends CompletableSource> mapper)Maps each element of the upstreamFlowableintoCompletableSources, subscribes to them and waits until the upstream and allCompletableSources complete.@NonNull CompletableFlowable. flatMapCompletable(@NonNull Function<? super @NonNull T,? extends CompletableSource> mapper, boolean delayErrors, int maxConcurrency)Maps each element of the upstreamFlowableintoCompletableSources, subscribes to them and waits until the upstream and allCompletableSources complete, optionally delaying all errors.@NonNull CompletableMaybe. flatMapCompletable(@NonNull Function<? super @NonNull T,? extends CompletableSource> mapper)Returns aCompletablethat completes based on applying a specified function to the item emitted by the currentMaybe, where that function returns aCompletable.@NonNull CompletableObservable. flatMapCompletable(@NonNull Function<? super @NonNull T,? extends CompletableSource> mapper)Maps each element of the currentObservableintoCompletableSources, subscribes to them and waits until the upstream and allCompletableSources complete.@NonNull CompletableObservable. flatMapCompletable(@NonNull Function<? super @NonNull T,? extends CompletableSource> mapper, boolean delayErrors)Maps each element of the currentObservableintoCompletableSources, subscribes to them and waits until the upstream and allCompletableSources complete, optionally delaying all errors.@NonNull CompletableSingle. flatMapCompletable(@NonNull Function<? super @NonNull T,? extends CompletableSource> mapper)Returns aCompletablethat completes based on applying a specified function to the item emitted by the currentSingle, where that function returns aCompletableSource.static @NonNull CompletableCompletable. merge(@NonNull java.lang.Iterable<? extends CompletableSource> sources)Returns aCompletableinstance that subscribes to all sources at once and completes only when all sourceCompletableSources complete or one of them emits an error.static @NonNull CompletableCompletable. merge(@NonNull org.reactivestreams.Publisher<? extends CompletableSource> sources)Returns aCompletableinstance that subscribes to all sources at once and completes only when all sourceCompletableSources complete or one of them emits an error.static @NonNull CompletableCompletable. merge(@NonNull org.reactivestreams.Publisher<? extends CompletableSource> sources, int maxConcurrency)Returns aCompletableinstance that keeps subscriptions to a limited number of sources at once and completes only when all sourceCompletableSources complete or one of them emits an error.private static @NonNull CompletableCompletable. merge0(@NonNull org.reactivestreams.Publisher<? extends CompletableSource> sources, int maxConcurrency, boolean delayErrors)Returns aCompletableinstance that keeps subscriptions to a limited number ofCompletableSources at once and completes only when all sourceCompletableSources terminate in one way or another, combining any exceptions signaled by either the sourcePublisheror the innerCompletableSourceinstances.static @NonNull CompletableCompletable. mergeDelayError(@NonNull java.lang.Iterable<? extends CompletableSource> sources)Returns aCompletablethat subscribes to allCompletableSources in the source sequence and delays any error emitted by any of the innerCompletableSources until all of them terminate in a way or another.static @NonNull CompletableCompletable. mergeDelayError(@NonNull org.reactivestreams.Publisher<? extends CompletableSource> sources)Returns aCompletablethat subscribes to allCompletableSources in the source sequence and delays any error emitted by either the sourcesPublisheror any of the innerCompletableSources until all of them terminate in a way or another.static @NonNull CompletableCompletable. mergeDelayError(@NonNull org.reactivestreams.Publisher<? extends CompletableSource> sources, int maxConcurrency)Returns aCompletablethat subscribes to a limited number of innerCompletableSources at once in the source sequence and delays any error emitted by either the sourcesPublisheror any of the innerCompletableSources until all of them terminate in a way or another.@NonNull CompletableCompletable. onErrorResumeNext(@NonNull Function<? super java.lang.Throwable,? extends CompletableSource> fallbackSupplier)Returns aCompletableinstance that when encounters an error from thisCompletable, calls the specifiedmapperFunctionthat returns aCompletableSourceinstance for it and resumes the execution with it.@NonNull CompletableFlowable. switchMapCompletable(@NonNull Function<? super @NonNull T,? extends CompletableSource> mapper)Maps the upstream values intoCompletableSources, subscribes to the newer one while disposing the subscription to the previousCompletableSource, thus keeping at most one activeCompletableSourcerunning.@NonNull CompletableObservable. switchMapCompletable(@NonNull Function<? super @NonNull T,? extends CompletableSource> mapper)Maps the items of the currentObservableintoCompletableSources, subscribes to the newer one while disposing the subscription to the previousCompletableSource, thus keeping at most one activeCompletableSourcerunning.@NonNull CompletableFlowable. switchMapCompletableDelayError(@NonNull Function<? super @NonNull T,? extends CompletableSource> mapper)Maps the upstream values intoCompletableSources, subscribes to the newer one while disposing the subscription to the previousCompletableSource, thus keeping at most one activeCompletableSourcerunning and delaying any main or inner errors until all of them terminate.@NonNull CompletableObservable. switchMapCompletableDelayError(@NonNull Function<? super @NonNull T,? extends CompletableSource> mapper)Maps the upstream values intoCompletableSources, subscribes to the newer one while disposing the subscription to the previousCompletableSource, thus keeping at most one activeCompletableSourcerunning and delaying any main or inner errors until all of them terminate.static @NonNull CompletableCompletable. switchOnNext(@NonNull org.reactivestreams.Publisher<? extends CompletableSource> sources)Switches betweenCompletableSources emitted by the sourcePublisherwhenever a newCompletableSourceis emitted, disposing the previously runningCompletableSource, exposing the setup as aCompletablesequence.static @NonNull CompletableCompletable. switchOnNextDelayError(@NonNull org.reactivestreams.Publisher<? extends CompletableSource> sources)Switches betweenCompletableSources emitted by the sourcePublisherwhenever a newCompletableSourceis emitted, disposing the previously runningCompletableSource, exposing the setup as aCompletablesequence and delaying all errors from all of them until all terminate.static <@NonNull R>
@NonNull CompletableCompletable. using(@NonNull Supplier<@NonNull R> resourceSupplier, @NonNull Function<? super @NonNull R,? extends CompletableSource> sourceSupplier, @NonNull Consumer<? super @NonNull R> resourceCleanup)Returns aCompletableinstance which manages a resource along with a customCompletableSourceinstance while the subscription is active.static <@NonNull R>
@NonNull CompletableCompletable. using(@NonNull Supplier<@NonNull R> resourceSupplier, @NonNull Function<? super @NonNull R,? extends CompletableSource> sourceSupplier, @NonNull Consumer<? super @NonNull R> resourceCleanup, boolean eager)Returns aCompletableinstance which manages a resource along with a customCompletableSourceinstance while the subscription is active and performs eager or lazy resource disposition. -
Uses of CompletableSource in io.reactivex.rxjava3.internal.fuseable
Methods in io.reactivex.rxjava3.internal.fuseable that return CompletableSource Modifier and Type Method Description @NonNull CompletableSourceHasUpstreamCompletableSource. source()Returns the upstream source of this Completable. -
Uses of CompletableSource in io.reactivex.rxjava3.internal.jdk8
Classes in io.reactivex.rxjava3.internal.jdk8 that implement CompletableSource Modifier and Type Class Description classCompletableFromCompletionStage<T>Wrap a CompletionStage and signal its outcome. -
Uses of CompletableSource in io.reactivex.rxjava3.internal.operators.completable
Classes in io.reactivex.rxjava3.internal.operators.completable that implement CompletableSource Modifier and Type Class Description classCompletableAmbclassCompletableAndThenCompletableclassCompletableCacheConsume the upstream source exactly once and cache its terminal event.classCompletableConcatclassCompletableConcatArrayclassCompletableConcatIterableclassCompletableCreateclassCompletableDeferclassCompletableDelayclassCompletableDetachBreaks the references between the upstream and downstream when the Completable terminates.classCompletableDisposeOnclassCompletableDoFinallyExecute an action after an onError, onComplete or a dispose event.classCompletableDoOnEventclassCompletableEmptyclassCompletableErrorclassCompletableErrorSupplierclassCompletableFromActionclassCompletableFromCallableclassCompletableFromObservable<T>classCompletableFromPublisher<T>classCompletableFromRunnableclassCompletableFromSingle<T>classCompletableFromSupplierCall a Supplier for each incoming CompletableObserver and signal completion or the thrown exception.classCompletableFromUnsafeSourceclassCompletableHideHides the identity of the upstream Completable and its Disposable sent through onSubscribe.classCompletableLiftclassCompletableMergeclassCompletableMergeArrayclassCompletableMergeArrayDelayErrorclassCompletableMergeDelayErrorIterableclassCompletableMergeIterableclassCompletableNeverclassCompletableObserveOnclassCompletableOnErrorCompleteclassCompletablePeekclassCompletableResumeNextclassCompletableSubscribeOnclassCompletableTakeUntilCompletableTerminates the sequence if either the main or the other Completable terminate.classCompletableTimeoutclassCompletableTimerSignals anonCompleteevent after the specified delay.classCompletableUsing<R>Fields in io.reactivex.rxjava3.internal.operators.completable declared as CompletableSource Modifier and Type Field Description (package private) CompletableSourceCompletableAndThenCompletable. next(package private) CompletableSourceCompletableAndThenCompletable.SourceObserver. next(package private) CompletableSourceCompletableTakeUntilCompletable. other(package private) CompletableSourceCompletableTimeout. other(package private) CompletableSourceCompletableAndThenCompletable. source(package private) CompletableSourceCompletableCache. source(package private) CompletableSourceCompletableDelay. source(package private) CompletableSourceCompletableDetach. source(package private) CompletableSourceCompletableDisposeOn. source(package private) CompletableSourceCompletableDoFinally. source(package private) CompletableSourceCompletableDoOnEvent. source(package private) CompletableSourceCompletableFromUnsafeSource. source(package private) CompletableSourceCompletableHide. source(package private) CompletableSourceCompletableLift. source(package private) CompletableSourceCompletableObserveOn. source(package private) CompletableSourceCompletableOnErrorComplete. source(package private) CompletableSourceCompletableOnErrorReturn. source(package private) CompletableSourceCompletablePeek. source(package private) CompletableSourceCompletableResumeNext. source(package private) CompletableSourceCompletableSubscribeOn. source(package private) CompletableSourceCompletableSubscribeOn.SubscribeOnObserver. source(package private) CompletableSourceCompletableTimeout. source(package private) CompletableSourceCompletableToFlowable. source(package private) CompletableSourceCompletableToObservable. source(package private) CompletableSourceCompletableToSingle. sourceprivate CompletableSource[]CompletableAmb. sources(package private) CompletableSource[]CompletableConcatArray.ConcatInnerObserver. sources(package private) CompletableSource[]CompletableConcatArray. sources(package private) CompletableSource[]CompletableMergeArray. sources(package private) CompletableSource[]CompletableMergeArrayDelayError. sourcesFields in io.reactivex.rxjava3.internal.operators.completable with type parameters of type CompletableSource Modifier and Type Field Description (package private) Function<? super R,? extends CompletableSource>CompletableUsing. completableFunction(package private) Supplier<? extends CompletableSource>CompletableDefer. completableSupplier(package private) Function<? super java.lang.Throwable,? extends CompletableSource>CompletableResumeNext. errorMapper(package private) Function<? super java.lang.Throwable,? extends CompletableSource>CompletableResumeNext.ResumeNextObserver. errorMapper(package private) SimpleQueue<CompletableSource>CompletableConcat.CompletableConcatSubscriber. queue(package private) org.reactivestreams.Publisher<? extends CompletableSource>CompletableMerge. source(package private) org.reactivestreams.Publisher<? extends CompletableSource>CompletableConcat. sources(package private) java.util.Iterator<? extends CompletableSource>CompletableConcatIterable.ConcatInnerObserver. sources(package private) java.lang.Iterable<? extends CompletableSource>CompletableConcatIterable. sources(package private) java.lang.Iterable<? extends CompletableSource>CompletableMergeDelayErrorIterable. sources(package private) java.lang.Iterable<? extends CompletableSource>CompletableMergeIterable. sourcesprivate java.lang.Iterable<? extends CompletableSource>CompletableAmb. sourcesIterableMethods in io.reactivex.rxjava3.internal.operators.completable with parameters of type CompletableSource Modifier and Type Method Description voidCompletableConcat.CompletableConcatSubscriber. onNext(CompletableSource t)voidCompletableMerge.CompletableMergeSubscriber. onNext(CompletableSource t)Constructor parameters in io.reactivex.rxjava3.internal.operators.completable with type arguments of type CompletableSource Constructor Description CompletableAmb(CompletableSource[] sources, java.lang.Iterable<? extends CompletableSource> sourcesIterable)CompletableConcat(org.reactivestreams.Publisher<? extends CompletableSource> sources, int prefetch)CompletableConcatIterable(java.lang.Iterable<? extends CompletableSource> sources)CompletableDefer(Supplier<? extends CompletableSource> completableSupplier)CompletableMerge(org.reactivestreams.Publisher<? extends CompletableSource> source, int maxConcurrency, boolean delayErrors)CompletableMergeDelayErrorIterable(java.lang.Iterable<? extends CompletableSource> sources)CompletableMergeIterable(java.lang.Iterable<? extends CompletableSource> sources)CompletableResumeNext(CompletableSource source, Function<? super java.lang.Throwable,? extends CompletableSource> errorMapper)CompletableUsing(Supplier<R> resourceSupplier, Function<? super R,? extends CompletableSource> completableFunction, Consumer<? super R> disposer, boolean eager)ConcatInnerObserver(CompletableObserver actual, java.util.Iterator<? extends CompletableSource> sources)ResumeNextObserver(CompletableObserver observer, Function<? super java.lang.Throwable,? extends CompletableSource> errorMapper) -
Uses of CompletableSource in io.reactivex.rxjava3.internal.operators.flowable
Classes in io.reactivex.rxjava3.internal.operators.flowable that implement CompletableSource Modifier and Type Class Description classFlowableFlatMapCompletableCompletable<T>Maps a sequence of values into CompletableSources and awaits their termination.classFlowableIgnoreElementsCompletable<T>Fields in io.reactivex.rxjava3.internal.operators.flowable declared as CompletableSource Modifier and Type Field Description (package private) CompletableSourceFlowableConcatWithCompletable.ConcatWithSubscriber. other(package private) CompletableSourceFlowableConcatWithCompletable. other(package private) CompletableSourceFlowableMergeWithCompletable. other(package private) CompletableSourceFlowableFromCompletable. sourceFields in io.reactivex.rxjava3.internal.operators.flowable with type parameters of type CompletableSource Modifier and Type Field Description (package private) Function<? super T,? extends CompletableSource>FlowableFlatMapCompletable.FlatMapCompletableMainSubscriber. mapper(package private) Function<? super T,? extends CompletableSource>FlowableFlatMapCompletable. mapper(package private) Function<? super T,? extends CompletableSource>FlowableFlatMapCompletableCompletable.FlatMapCompletableMainSubscriber. mapper(package private) Function<? super T,? extends CompletableSource>FlowableFlatMapCompletableCompletable. mapperMethods in io.reactivex.rxjava3.internal.operators.flowable that return CompletableSource Modifier and Type Method Description CompletableSourceFlowableFromCompletable. source()Constructors in io.reactivex.rxjava3.internal.operators.flowable with parameters of type CompletableSource Constructor Description ConcatWithSubscriber(org.reactivestreams.Subscriber<? super T> actual, CompletableSource other)FlowableConcatWithCompletable(Flowable<T> source, CompletableSource other)FlowableFromCompletable(CompletableSource source)FlowableMergeWithCompletable(Flowable<T> source, CompletableSource other)Constructor parameters in io.reactivex.rxjava3.internal.operators.flowable with type arguments of type CompletableSource Constructor Description FlatMapCompletableMainSubscriber(org.reactivestreams.Subscriber<? super T> subscriber, Function<? super T,? extends CompletableSource> mapper, boolean delayErrors, int maxConcurrency)FlatMapCompletableMainSubscriber(CompletableObserver observer, Function<? super T,? extends CompletableSource> mapper, boolean delayErrors, int maxConcurrency)FlowableFlatMapCompletable(Flowable<T> source, Function<? super T,? extends CompletableSource> mapper, boolean delayErrors, int maxConcurrency)FlowableFlatMapCompletableCompletable(Flowable<T> source, Function<? super T,? extends CompletableSource> mapper, boolean delayErrors, int maxConcurrency) -
Uses of CompletableSource in io.reactivex.rxjava3.internal.operators.maybe
Classes in io.reactivex.rxjava3.internal.operators.maybe that implement CompletableSource Modifier and Type Class Description classMaybeFlatMapCompletable<T>Maps the success value of the source MaybeSource into a Completable.classMaybeIgnoreElementCompletable<T>Turns an onSuccess into an onComplete, onError and onComplete is relayed as is.Fields in io.reactivex.rxjava3.internal.operators.maybe declared as CompletableSource Modifier and Type Field Description (package private) CompletableSourceMaybeDelayWithCompletable. other(package private) CompletableSourceMaybeFromCompletable. sourceFields in io.reactivex.rxjava3.internal.operators.maybe with type parameters of type CompletableSource Modifier and Type Field Description (package private) Function<? super T,? extends CompletableSource>MaybeFlatMapCompletable.FlatMapCompletableObserver. mapper(package private) Function<? super T,? extends CompletableSource>MaybeFlatMapCompletable. mapperMethods in io.reactivex.rxjava3.internal.operators.maybe that return CompletableSource Modifier and Type Method Description CompletableSourceMaybeFromCompletable. source()Constructors in io.reactivex.rxjava3.internal.operators.maybe with parameters of type CompletableSource Constructor Description MaybeDelayWithCompletable(MaybeSource<T> source, CompletableSource other)MaybeFromCompletable(CompletableSource source)Constructor parameters in io.reactivex.rxjava3.internal.operators.maybe with type arguments of type CompletableSource Constructor Description FlatMapCompletableObserver(CompletableObserver actual, Function<? super T,? extends CompletableSource> mapper)MaybeFlatMapCompletable(MaybeSource<T> source, Function<? super T,? extends CompletableSource> mapper) -
Uses of CompletableSource in io.reactivex.rxjava3.internal.operators.mixed
Classes in io.reactivex.rxjava3.internal.operators.mixed that implement CompletableSource Modifier and Type Class Description classFlowableConcatMapCompletable<T>Maps the upstream items intoCompletableSources and subscribes to them one after the other completes or terminates (in error-delaying mode).classFlowableSwitchMapCompletable<T>Maps the upstream values intoCompletableSources, subscribes to the newer one while disposing the subscription to the previousCompletableSource, thus keeping at most one activeCompletableSourcerunning.classFlowableSwitchMapCompletablePublisher<T>Switch between subsequentCompletableSources emitted by aPublisher.classObservableConcatMapCompletable<T>Maps the upstream items intoCompletableSources and subscribes to them one after the other completes or terminates (in error-delaying mode).classObservableSwitchMapCompletable<T>Maps the upstream values intoCompletableSources, subscribes to the newer one while disposing the subscription to the previousCompletableSource, thus keeping at most one activeCompletableSourcerunning.Fields in io.reactivex.rxjava3.internal.operators.mixed declared as CompletableSource Modifier and Type Field Description (package private) CompletableSourceCompletableAndThenObservable. source(package private) CompletableSourceCompletableAndThenPublisher. sourceFields in io.reactivex.rxjava3.internal.operators.mixed with type parameters of type CompletableSource Modifier and Type Field Description (package private) Function<? super T,? extends CompletableSource>FlowableConcatMapCompletable.ConcatMapCompletableObserver. mapper(package private) Function<? super T,? extends CompletableSource>FlowableConcatMapCompletable. mapper(package private) Function<? super T,? extends CompletableSource>FlowableSwitchMapCompletable. mapper(package private) Function<? super T,? extends CompletableSource>FlowableSwitchMapCompletable.SwitchMapCompletableObserver. mapper(package private) Function<? super T,? extends CompletableSource>FlowableSwitchMapCompletablePublisher. mapper(package private) Function<? super T,? extends CompletableSource>ObservableConcatMapCompletable.ConcatMapCompletableObserver. mapper(package private) Function<? super T,? extends CompletableSource>ObservableConcatMapCompletable. mapper(package private) Function<? super T,? extends CompletableSource>ObservableSwitchMapCompletable. mapper(package private) Function<? super T,? extends CompletableSource>ObservableSwitchMapCompletable.SwitchMapCompletableObserver. mapperMethod parameters in io.reactivex.rxjava3.internal.operators.mixed with type arguments of type CompletableSource Modifier and Type Method Description (package private) static <T> booleanScalarXMapZHelper. tryAsCompletable(java.lang.Object source, Function<? super T,? extends CompletableSource> mapper, CompletableObserver observer)Try subscribing to aCompletableSourcemapped from a scalar source (which implementsSupplier).Constructors in io.reactivex.rxjava3.internal.operators.mixed with parameters of type CompletableSource Constructor Description CompletableAndThenObservable(CompletableSource source, ObservableSource<? extends R> other)CompletableAndThenPublisher(CompletableSource source, org.reactivestreams.Publisher<? extends R> other)Constructor parameters in io.reactivex.rxjava3.internal.operators.mixed with type arguments of type CompletableSource Constructor Description ConcatMapCompletableObserver(CompletableObserver downstream, Function<? super T,? extends CompletableSource> mapper, ErrorMode errorMode, int prefetch)ConcatMapCompletableObserver(CompletableObserver downstream, Function<? super T,? extends CompletableSource> mapper, ErrorMode errorMode, int prefetch)FlowableConcatMapCompletable(Flowable<T> source, Function<? super T,? extends CompletableSource> mapper, ErrorMode errorMode, int prefetch)FlowableSwitchMapCompletable(Flowable<T> source, Function<? super T,? extends CompletableSource> mapper, boolean delayErrors)FlowableSwitchMapCompletablePublisher(org.reactivestreams.Publisher<T> source, Function<? super T,? extends CompletableSource> mapper, boolean delayErrors)ObservableConcatMapCompletable(Observable<T> source, Function<? super T,? extends CompletableSource> mapper, ErrorMode errorMode, int prefetch)ObservableSwitchMapCompletable(Observable<T> source, Function<? super T,? extends CompletableSource> mapper, boolean delayErrors)SwitchMapCompletableObserver(CompletableObserver downstream, Function<? super T,? extends CompletableSource> mapper, boolean delayErrors)SwitchMapCompletableObserver(CompletableObserver downstream, Function<? super T,? extends CompletableSource> mapper, boolean delayErrors) -
Uses of CompletableSource in io.reactivex.rxjava3.internal.operators.observable
Classes in io.reactivex.rxjava3.internal.operators.observable that implement CompletableSource Modifier and Type Class Description classObservableFlatMapCompletableCompletable<T>Maps a sequence of values into CompletableSources and awaits their termination.classObservableIgnoreElementsCompletable<T>Fields in io.reactivex.rxjava3.internal.operators.observable declared as CompletableSource Modifier and Type Field Description (package private) CompletableSourceObservableConcatWithCompletable.ConcatWithObserver. other(package private) CompletableSourceObservableConcatWithCompletable. other(package private) CompletableSourceObservableMergeWithCompletable. other(package private) CompletableSourceObservableFromCompletable. sourceFields in io.reactivex.rxjava3.internal.operators.observable with type parameters of type CompletableSource Modifier and Type Field Description (package private) Function<? super T,? extends CompletableSource>ObservableFlatMapCompletable.FlatMapCompletableMainObserver. mapper(package private) Function<? super T,? extends CompletableSource>ObservableFlatMapCompletable. mapper(package private) Function<? super T,? extends CompletableSource>ObservableFlatMapCompletableCompletable.FlatMapCompletableMainObserver. mapper(package private) Function<? super T,? extends CompletableSource>ObservableFlatMapCompletableCompletable. mapperMethods in io.reactivex.rxjava3.internal.operators.observable that return CompletableSource Modifier and Type Method Description CompletableSourceObservableFromCompletable. source()Constructors in io.reactivex.rxjava3.internal.operators.observable with parameters of type CompletableSource Constructor Description ConcatWithObserver(Observer<? super T> actual, CompletableSource other)ObservableConcatWithCompletable(Observable<T> source, CompletableSource other)ObservableFromCompletable(CompletableSource source)ObservableMergeWithCompletable(Observable<T> source, CompletableSource other)Constructor parameters in io.reactivex.rxjava3.internal.operators.observable with type arguments of type CompletableSource Constructor Description FlatMapCompletableMainObserver(Observer<? super T> observer, Function<? super T,? extends CompletableSource> mapper, boolean delayErrors)FlatMapCompletableMainObserver(CompletableObserver observer, Function<? super T,? extends CompletableSource> mapper, boolean delayErrors)ObservableFlatMapCompletable(ObservableSource<T> source, Function<? super T,? extends CompletableSource> mapper, boolean delayErrors)ObservableFlatMapCompletableCompletable(ObservableSource<T> source, Function<? super T,? extends CompletableSource> mapper, boolean delayErrors) -
Uses of CompletableSource in io.reactivex.rxjava3.internal.operators.single
Classes in io.reactivex.rxjava3.internal.operators.single that implement CompletableSource Modifier and Type Class Description classSingleFlatMapCompletable<T>Maps the success value of the source SingleSource into a Completable.Fields in io.reactivex.rxjava3.internal.operators.single declared as CompletableSource Modifier and Type Field Description (package private) CompletableSourceSingleDelayWithCompletable. otherFields in io.reactivex.rxjava3.internal.operators.single with type parameters of type CompletableSource Modifier and Type Field Description (package private) Function<? super T,? extends CompletableSource>SingleFlatMapCompletable.FlatMapCompletableObserver. mapper(package private) Function<? super T,? extends CompletableSource>SingleFlatMapCompletable. mapperConstructors in io.reactivex.rxjava3.internal.operators.single with parameters of type CompletableSource Constructor Description SingleDelayWithCompletable(SingleSource<T> source, CompletableSource other)Constructor parameters in io.reactivex.rxjava3.internal.operators.single with type arguments of type CompletableSource Constructor Description FlatMapCompletableObserver(CompletableObserver actual, Function<? super T,? extends CompletableSource> mapper)SingleFlatMapCompletable(SingleSource<T> source, Function<? super T,? extends CompletableSource> mapper) -
Uses of CompletableSource in io.reactivex.rxjava3.internal.schedulers
Classes in io.reactivex.rxjava3.internal.schedulers that implement CompletableSource Modifier and Type Class Description (package private) classSchedulerWhen.CreateWorkerFunction.WorkerCompletable -
Uses of CompletableSource in io.reactivex.rxjava3.subjects
Classes in io.reactivex.rxjava3.subjects that implement CompletableSource Modifier and Type Class Description classCompletableSubjectRepresents a hot Completable-like source and consumer of events similar to Subjects.
-