Class ObservableFlatMapCompletableCompletable<T>
java.lang.Object
io.reactivex.rxjava3.core.Completable
io.reactivex.rxjava3.internal.operators.observable.ObservableFlatMapCompletableCompletable<T>
- Type Parameters:
T- the value type
- All Implemented Interfaces:
CompletableSource,FuseToObservable<T>
public final class ObservableFlatMapCompletableCompletable<T>
extends Completable
implements FuseToObservable<T>
Maps a sequence of values into CompletableSources and awaits their termination.
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescription(package private) static final class -
Field Summary
FieldsModifier and TypeFieldDescription(package private) final boolean(package private) final Function<? super T, ? extends CompletableSource> (package private) final ObservableSource<T> -
Constructor Summary
ConstructorsConstructorDescriptionObservableFlatMapCompletableCompletable(ObservableSource<T> source, Function<? super T, ? extends CompletableSource> mapper, boolean delayErrors) -
Method Summary
Modifier and TypeMethodDescriptionReturns a (direct) Observable for the operator.protected voidsubscribeActual(CompletableObserver observer) Implement this method to handle the incomingCompletableObservers and perform the business logic in your operator.Methods inherited from class io.reactivex.rxjava3.core.Completable
amb, ambArray, ambWith, andThen, andThen, andThen, andThen, andThen, blockingAwait, blockingAwait, blockingSubscribe, blockingSubscribe, blockingSubscribe, blockingSubscribe, cache, complete, compose, concat, concat, concat, concatArray, concatArrayDelayError, concatDelayError, concatDelayError, concatDelayError, concatWith, create, defer, delay, delay, delay, delaySubscription, delaySubscription, doAfterTerminate, doFinally, doOnComplete, doOnDispose, doOnError, doOnEvent, doOnLifecycle, doOnSubscribe, doOnTerminate, error, error, fromAction, fromCallable, fromCompletionStage, fromFuture, fromMaybe, fromObservable, fromPublisher, fromRunnable, fromSingle, fromSupplier, hide, lift, materialize, merge, merge, merge, mergeArray, mergeArrayDelayError, mergeDelayError, mergeDelayError, mergeDelayError, mergeWith, never, observeOn, onErrorComplete, onErrorComplete, onErrorResumeNext, onErrorResumeWith, onErrorReturn, onErrorReturnItem, onTerminateDetach, repeat, repeat, repeatUntil, repeatWhen, retry, retry, retry, retry, retry, retryUntil, retryWhen, safeSubscribe, sequenceEqual, startWith, startWith, startWith, startWith, startWith, subscribe, subscribe, subscribe, subscribe, subscribe, subscribeOn, subscribeWith, switchOnNext, switchOnNextDelayError, takeUntil, test, test, timeout, timeout, timeout, timeout, timer, timer, to, toCompletionStage, toFlowable, toFuture, toMaybe, toObservable, toSingle, toSingleDefault, unsafeCreate, unsubscribeOn, using, using, wrap
-
Field Details
-
source
-
mapper
-
delayErrors
final boolean delayErrors
-
-
Constructor Details
-
ObservableFlatMapCompletableCompletable
public ObservableFlatMapCompletableCompletable(ObservableSource<T> source, Function<? super T, ? extends CompletableSource> mapper, boolean delayErrors)
-
-
Method Details
-
subscribeActual
Description copied from class:CompletableImplement this method to handle the incomingCompletableObservers and perform the business logic in your operator.There is no need to call any of the plugin hooks on the current
Completableinstance or theCompletableObserver; all hooks and basic safeguards have been applied byCompletable.subscribe(CompletableObserver)before this method gets called.- Specified by:
subscribeActualin classCompletable- Parameters:
observer- theCompletableObserverinstance, nevernull
-
fuseToObservable
Description copied from interface:FuseToObservableReturns a (direct) Observable for the operator.The implementation should handle the necessary RxJavaPlugins wrapping.
- Specified by:
fuseToObservablein interfaceFuseToObservable<T>- Returns:
- the Observable instance
-