Uses of Interface
io.reactivex.rxjava3.functions.Action
Packages that use Action
Package
Description
Base reactive classes:
Flowable, Observable,
Single, Maybe and
Completable; base reactive consumers;
other common base interfaces.Default implementations for
Disposable-based resource management
(Disposable container types) and utility classes to construct
Disposables from callbacks and other types.Contains the base type
ParallelFlowable,
a sub-DSL for working with Flowable sequences in parallel.-
Uses of Action in io.reactivex.rxjava3.core
Methods in io.reactivex.rxjava3.core with parameters of type ActionModifier and TypeMethodDescriptionfinal voidCompletable.blockingSubscribe(@NonNull Action onComplete) Subscribes to the currentCompletableand calls givenonCompletecallback on the current thread when it completes normally.final voidCompletable.blockingSubscribe(@NonNull Action onComplete, @NonNull Consumer<? super Throwable> onError) Subscribes to the currentCompletableand calls the appropriate callback on the current thread when it terminates.final voidFlowable.blockingSubscribe(@NonNull Consumer<? super @NonNull T> onNext, @NonNull Consumer<? super Throwable> onError, @NonNull Action onComplete) Subscribes to the source and calls the given callbacks on the current thread.final voidFlowable.blockingSubscribe(@NonNull Consumer<? super @NonNull T> onNext, @NonNull Consumer<? super Throwable> onError, @NonNull Action onComplete, int bufferSize) Subscribes to the source and calls the given callbacks on the current thread.final voidMaybe.blockingSubscribe(@NonNull Consumer<? super @NonNull T> onSuccess, @NonNull Consumer<? super Throwable> onError, @NonNull Action onComplete) Subscribes to the currentMaybeand calls the appropriate callback on the current thread when it terminates.final voidObservable.blockingSubscribe(@NonNull Consumer<? super @NonNull T> onNext, @NonNull Consumer<? super Throwable> onError, @NonNull Action onComplete) Subscribes to the source and calls the given callbacks on the current thread.final @NonNull CompletableCompletable.doAfterTerminate(@NonNull Action onAfterTerminate) Returns aCompletableinstance that calls the givenonAfterTerminateActionafter thisCompletablecompletes normally or with an exception.Flowable.doAfterTerminate(@NonNull Action onAfterTerminate) Maybe.doAfterTerminate(@NonNull Action onAfterTerminate) final @NonNull Observable<T> Observable.doAfterTerminate(@NonNull Action onAfterTerminate) Single.doAfterTerminate(@NonNull Action onAfterTerminate) final @NonNull CompletableCalls the specifiedActionafter thisCompletablesignalsonErrororonCompleteor gets disposed by the downstream.Calls the specified action after thisFlowablesignalsonErrororonCompleteor gets canceled by the downstream.Calls the specified action after thisMaybesignalsonSuccess,onErrororonCompleteor gets disposed by the downstream.final @NonNull Observable<T> Calls the specified action after the currentObservablesignalsonErrororonCompletedor gets disposed by the downstream.Calls the specified action after thisSinglesignalsonSuccessoronErroror gets disposed by the downstream.Flowable.doOnCancel(@NonNull Action onCancel) Calls the cancelActionif the downstream cancels the sequence.final @NonNull CompletableCompletable.doOnComplete(@NonNull Action onComplete) Flowable.doOnComplete(@NonNull Action onComplete) Maybe.doOnComplete(@NonNull Action onComplete) final @NonNull Observable<T> Observable.doOnComplete(@NonNull Action onComplete) final @NonNull CompletableCompletable.doOnDispose(@NonNull Action onDispose) Calls the sharedActionif aCompletableObserversubscribed to the currentCompletabledisposes the commonDisposableit received viaonSubscribe.Maybe.doOnDispose(@NonNull Action onDispose) Calls the sharedActionif aMaybeObserversubscribed to the currentMaybedisposes the commonDisposableit received viaonSubscribe.final @NonNull Observable<T> Observable.doOnDispose(@NonNull Action onDispose) Calls the given sharedActionif the downstream disposes the sequence.Single.doOnDispose(@NonNull Action onDispose) Calls the sharedActionif aSingleObserversubscribed to the currentSingledisposes the commonDisposableit received viaonSubscribe.Flowable.doOnEach(@NonNull Consumer<? super @NonNull T> onNext, @NonNull Consumer<? super Throwable> onError, Action onComplete, Action onAfterTerminate) Calls the appropriate onXXX consumer (shared between all subscribers) whenever a signal with the same type passes through, before forwarding them to downstream.private @NonNull Observable<T> Observable.doOnEach(@NonNull Consumer<? super @NonNull T> onNext, @NonNull Consumer<? super Throwable> onError, @NonNull Action onComplete, @NonNull Action onAfterTerminate) Calls the appropriateonXXXconsumer (shared between allObservers) whenever a signal with the same type passes through, before forwarding them to the downstream.final @NonNull CompletableCompletable.doOnLifecycle(@NonNull Consumer<? super Disposable> onSubscribe, @NonNull Action onDispose) Calls the appropriateonXXXmethod (shared between allCompletableObservers) for the lifecycle events of the sequence (subscription, disposal).private @NonNull CompletableCompletable.doOnLifecycle(Consumer<? super Disposable> onSubscribe, Consumer<? super Throwable> onError, Action onComplete, Action onTerminate, Action onAfterTerminate, Action onDispose) Returns aCompletableinstance that calls the various callbacks upon the specific lifecycle events.Flowable.doOnLifecycle(@NonNull Consumer<? super org.reactivestreams.Subscription> onSubscribe, @NonNull LongConsumer onRequest, @NonNull Action onCancel) Calls the appropriateonXXXmethod (shared between allSubscribers) for the lifecycle events of the sequence (subscription, cancellation, requesting).Maybe.doOnLifecycle(@NonNull Consumer<? super Disposable> onSubscribe, @NonNull Action onDispose) Calls the appropriateonXXXmethod (shared between allMaybeObservers) for the lifecycle events of the sequence (subscription, disposal).final @NonNull Observable<T> Observable.doOnLifecycle(@NonNull Consumer<? super Disposable> onSubscribe, @NonNull Action onDispose) Calls the appropriateonXXXmethod (shared between allObservers) for the lifecycle events of the sequence (subscription, disposal).Single.doOnLifecycle(@NonNull Consumer<? super Disposable> onSubscribe, @NonNull Action onDispose) Calls the appropriateonXXXmethod (shared between allSingleObservers) for the lifecycle events of the sequence (subscription, disposal).final @NonNull CompletableCompletable.doOnTerminate(@NonNull Action onTerminate) Returns aCompletableinstance that calls the givenonTerminateActionjust before thisCompletablecompletes normally or with an exception.Flowable.doOnTerminate(@NonNull Action onTerminate) Calls the givenActionwhen the currentFlowablecompletes normally or with an error before those signals are forwarded to the downstream.Maybe.doOnTerminate(@NonNull Action onTerminate) Returns aMaybeinstance that calls the given onTerminate callback just before thisMaybecompletes normally or with an exception.final @NonNull Observable<T> Observable.doOnTerminate(@NonNull Action onTerminate) Returns anObservableso that it invokes an action when the currentObservablecallsonCompleteoronError.Single.doOnTerminate(@NonNull Action onTerminate) Returns aSingleinstance that calls the givenonTerminatecallback just before thisSinglecompletes normally or with an exception.final @NonNull DisposableFlowable.forEachWhile(@NonNull Predicate<? super @NonNull T> onNext, @NonNull Consumer<? super Throwable> onError, @NonNull Action onComplete) Subscribes to the currentFlowableand receives notifications for each element and the terminal events until theonNextPredicate returnsfalse.final @NonNull DisposableObservable.forEachWhile(@NonNull Predicate<? super @NonNull T> onNext, @NonNull Consumer<? super Throwable> onError, @NonNull Action onComplete) Subscribes to theObservableSourceand calls aPredicatefor each item, aConsumerwith the error or anActionupon completion of the currentObservable, on their original emission threads, until the predicate returnsfalse.static @NonNull CompletableCompletable.fromAction(@NonNull Action action) Returns aCompletableinstance that runs the givenActionfor eachCompletableObserverand emits either an exception or simply completes.Flowable.fromAction(@NonNull Action action) Returns aFlowableinstance that runs the givenActionfor eachSubscriberand emits either its exception or simply completes.Maybe.fromAction(@NonNull Action action) Returns aMaybeinstance that runs the givenActionfor eachMaybeObserverand emits either its exception or simply completes.static <@NonNull T>
@NonNull Observable<T> Observable.fromAction(@NonNull Action action) Flowable.onBackpressureBuffer(int capacity, boolean delayError, boolean unbounded, @NonNull Action onOverflow) Buffers an optionally unlimited number of items from the currentFlowableand allows it to emit as fast it can while allowing the downstream to consume the items at its own place.Flowable.onBackpressureBuffer(int capacity, boolean delayError, boolean unbounded, @NonNull Action onOverflow, @NonNull Consumer<? super @NonNull T> onDropped) Buffers an optionally unlimited number of items from the currentFlowableand allows it to emit as fast it can while allowing the downstream to consume the items at its own place.Flowable.onBackpressureBuffer(int capacity, @NonNull Action onOverflow) Buffers an limited number of items from the currentFlowableand allows it to emit as fast it can while allowing the downstream to consume the items at its own place, however, the resultingFlowablewill signal aMissingBackpressureExceptionviaonErroras soon as the buffer's capacity is exceeded, dropping all undelivered items, canceling the flow and calling theonOverflowaction.Flowable.onBackpressureBuffer(long capacity, @Nullable Action onOverflow, @NonNull BackpressureOverflowStrategy overflowStrategy) Buffers an optionally unlimited number of items from the currentFlowableand allows it to emit as fast it can while allowing the downstream to consume the items at its own place.Flowable.onBackpressureBuffer(long capacity, @Nullable Action onOverflow, @NonNull BackpressureOverflowStrategy overflowStrategy, @NonNull Consumer<? super @NonNull T> onDropped) Buffers an optionally unlimited number of items from the currentFlowableand allows it to emit as fast it can while allowing the downstream to consume the items at its own place.final @NonNull Disposablefinal @NonNull DisposableSubscribes to thisCompletableand calls back either theonErrororonCompletefunctions.final @NonNull DisposableCompletable.subscribe(@NonNull Action onComplete, @NonNull Consumer<? super Throwable> onError, @NonNull DisposableContainer container) Wraps the given onXXX callbacks into aDisposableCompletableObserver, adds it to the givenDisposableContainerand ensures, that if the upstream terminates or this particularDisposableis disposed, theCompletableObserveris removed from the given composite.final @NonNull DisposableFlowable.subscribe(@NonNull Consumer<? super @NonNull T> onNext, @NonNull Consumer<? super Throwable> onError, @NonNull Action onComplete) Subscribes to the currentFlowableand provides callbacks to handle the items it emits and any error or completion notification it issues.final @NonNull DisposableFlowable.subscribe(@NonNull Consumer<? super @NonNull T> onNext, @NonNull Consumer<? super Throwable> onError, @NonNull Action onComplete, @NonNull DisposableContainer container) Wraps the given onXXX callbacks into aDisposableSubscriber, adds it to the givenDisposableContainerand ensures, that if the upstream terminates or this particularDisposableis disposed, theSubscriberis removed from the given container.final @NonNull DisposableMaybe.subscribe(@NonNull Consumer<? super @NonNull T> onSuccess, @NonNull Consumer<? super Throwable> onError, @NonNull Action onComplete) Subscribes to aMaybeand provides callbacks to handle the items it emits and any error or completion notification it issues.final @NonNull DisposableMaybe.subscribe(@NonNull Consumer<? super @NonNull T> onSuccess, @NonNull Consumer<? super Throwable> onError, @NonNull Action onComplete, @NonNull DisposableContainer container) Wraps the given onXXX callbacks into aDisposableMaybeObserver, adds it to the givenDisposableContainerand ensures, that if the upstream terminates or this particularDisposableis disposed, theMaybeObserveris removed from the given composite.final @NonNull DisposableObservable.subscribe(@NonNull Consumer<? super @NonNull T> onNext, @NonNull Consumer<? super Throwable> onError, @NonNull Action onComplete) Subscribes to the currentObservableand provides callbacks to handle the items it emits and any error or completion notification it signals.final @NonNull DisposableObservable.subscribe(@NonNull Consumer<? super @NonNull T> onNext, @NonNull Consumer<? super Throwable> onError, @NonNull Action onComplete, @NonNull DisposableContainer container) Wraps the given onXXX callbacks into aDisposableObserver, adds it to the givenDisposableContainerand ensures, that if the upstream terminates or this particularDisposableis disposed, theObserveris removed from the given container. -
Uses of Action in io.reactivex.rxjava3.disposables
Subclasses with type arguments of type Action in io.reactivex.rxjava3.disposablesModifier and TypeClassDescription(package private) final classA Disposable container that manages anActioninstance.Methods in io.reactivex.rxjava3.disposables with parameters of type ActionModifier and TypeMethodDescriptionstatic @NonNull DisposableDisposable.fromAction(@NonNull Action action) Construct aDisposableby wrapping aActionthat is executed exactly once when theDisposableis disposed.protected voidActionDisposable.onDisposed(@NonNull Action value) Constructors in io.reactivex.rxjava3.disposables with parameters of type Action -
Uses of Action in io.reactivex.rxjava3.internal.functions
Classes in io.reactivex.rxjava3.internal.functions that implement ActionModifier and TypeClassDescription(package private) static final class(package private) static final class(package private) static final classFields in io.reactivex.rxjava3.internal.functions declared as ActionModifier and TypeFieldDescription(package private) final ActionFunctions.ActionConsumer.actionstatic final ActionFunctions.EMPTY_ACTIONMethods in io.reactivex.rxjava3.internal.functions that return ActionModifier and TypeMethodDescriptionFunctions.futureAction(@NonNull Future<?> future) Wraps the blocking get call of the Future into an Action.static <T> ActionFunctions.notificationOnComplete(Consumer<? super Notification<T>> onNotification) Methods in io.reactivex.rxjava3.internal.functions with parameters of type ActionConstructors in io.reactivex.rxjava3.internal.functions with parameters of type Action -
Uses of Action in io.reactivex.rxjava3.internal.observers
Fields in io.reactivex.rxjava3.internal.observers declared as ActionModifier and TypeFieldDescription(package private) final ActionAbstractDisposableAutoRelease.onComplete(package private) final ActionCallbackCompletableObserver.onComplete(package private) final ActionForEachWhileObserver.onComplete(package private) final ActionLambdaObserver.onComplete(package private) final ActionDisposableLambdaObserver.onDisposeMethods in io.reactivex.rxjava3.internal.observers with parameters of type ActionModifier and TypeMethodDescriptionvoidBlockingMultiObserver.blockingConsume(Consumer<? super T> onSuccess, Consumer<? super Throwable> onError, Action onComplete) Blocks until the source completes and calls the appropriate callback.Constructors in io.reactivex.rxjava3.internal.observers with parameters of type ActionModifierConstructorDescription(package private)AbstractDisposableAutoRelease(DisposableContainer composite, Consumer<? super Throwable> onError, Action onComplete) CallbackCompletableObserver(Consumer<? super Throwable> onError, Action onComplete) DisposableAutoReleaseMultiObserver(DisposableContainer composite, Consumer<? super T> onSuccess, Consumer<? super Throwable> onError, Action onComplete) DisposableAutoReleaseObserver(DisposableContainer composite, Consumer<? super T> onNext, Consumer<? super Throwable> onError, Action onComplete) DisposableLambdaObserver(Observer<? super T> actual, Consumer<? super Disposable> onSubscribe, Action onDispose) ForEachWhileObserver(Predicate<? super T> onNext, Consumer<? super Throwable> onError, Action onComplete) LambdaObserver(Consumer<? super T> onNext, Consumer<? super Throwable> onError, Action onComplete, Consumer<? super Disposable> onSubscribe) -
Uses of Action in io.reactivex.rxjava3.internal.operators.completable
Fields in io.reactivex.rxjava3.internal.operators.completable declared as ActionModifier and TypeFieldDescription(package private) final ActionCompletablePeek.onAfterTerminate(package private) final ActionCompletablePeek.onComplete(package private) final ActionCompletablePeek.onDispose(package private) final ActionCompletableDoFinally.DoFinallyObserver.onFinally(package private) final ActionCompletableDoFinally.onFinally(package private) final ActionCompletablePeek.onTerminate(package private) final ActionCompletableFromAction.runConstructors in io.reactivex.rxjava3.internal.operators.completable with parameters of type ActionModifierConstructorDescriptionCompletableDoFinally(CompletableSource source, Action onFinally) CompletablePeek(CompletableSource source, Consumer<? super Disposable> onSubscribe, Consumer<? super Throwable> onError, Action onComplete, Action onTerminate, Action onAfterTerminate, Action onDispose) (package private)DoFinallyObserver(CompletableObserver actual, Action onFinally) -
Uses of Action in io.reactivex.rxjava3.internal.operators.flowable
Classes in io.reactivex.rxjava3.internal.operators.flowable that implement ActionModifier and TypeClassDescription(package private) static final classFields in io.reactivex.rxjava3.internal.operators.flowable declared as ActionModifier and TypeFieldDescription(package private) final ActionFlowableFromAction.action(package private) final ActionFlowableDoOnEach.DoOnEachConditionalSubscriber.onAfterTerminate(package private) final ActionFlowableDoOnEach.DoOnEachSubscriber.onAfterTerminate(package private) final ActionFlowableDoOnEach.onAfterTerminateprivate final ActionFlowableDoOnLifecycle.onCancel(package private) final ActionFlowableDoOnLifecycle.SubscriptionLambdaSubscriber.onCancel(package private) final ActionFlowableDoOnEach.DoOnEachConditionalSubscriber.onComplete(package private) final ActionFlowableDoOnEach.DoOnEachSubscriber.onComplete(package private) final ActionFlowableDoOnEach.onComplete(package private) final ActionFlowableDoFinally.DoFinallyConditionalSubscriber.onFinally(package private) final ActionFlowableDoFinally.DoFinallySubscriber.onFinally(package private) final ActionFlowableDoFinally.onFinally(package private) final ActionFlowableOnBackpressureBuffer.BackpressureBufferSubscriber.onOverflow(package private) final ActionFlowableOnBackpressureBuffer.onOverflow(package private) final ActionFlowableOnBackpressureBufferStrategy.OnBackpressureBufferStrategySubscriber.onOverflow(package private) final ActionFlowableOnBackpressureBufferStrategy.onOverflowMethods in io.reactivex.rxjava3.internal.operators.flowable that return ActionModifier and TypeMethodDescriptionstatic <T> ActionFlowableInternalHelper.subscriberOnComplete(org.reactivestreams.Subscriber<T> subscriber) Methods in io.reactivex.rxjava3.internal.operators.flowable with parameters of type ActionModifier and TypeMethodDescriptionstatic <T> voidFlowableBlockingSubscribe.subscribe(org.reactivestreams.Publisher<? extends T> o, Consumer<? super T> onNext, Consumer<? super Throwable> onError, Action onComplete) Subscribes to the source and calls the given actions on the current thread.static <T> voidFlowableBlockingSubscribe.subscribe(org.reactivestreams.Publisher<? extends T> o, Consumer<? super T> onNext, Consumer<? super Throwable> onError, Action onComplete, int bufferSize) Subscribes to the source and calls the given actions on the current thread.Constructors in io.reactivex.rxjava3.internal.operators.flowable with parameters of type ActionModifierConstructorDescription(package private)BackpressureBufferSubscriber(org.reactivestreams.Subscriber<? super T> actual, int bufferSize, boolean unbounded, boolean delayError, Action onOverflow, Consumer<? super T> onDropped) (package private)DoFinallyConditionalSubscriber(ConditionalSubscriber<? super T> actual, Action onFinally) (package private)DoFinallySubscriber(org.reactivestreams.Subscriber<? super T> actual, Action onFinally) (package private)DoOnEachConditionalSubscriber(ConditionalSubscriber<? super T> actual, Consumer<? super T> onNext, Consumer<? super Throwable> onError, Action onComplete, Action onAfterTerminate) (package private)DoOnEachSubscriber(org.reactivestreams.Subscriber<? super T> actual, Consumer<? super T> onNext, Consumer<? super Throwable> onError, Action onComplete, Action onAfterTerminate) FlowableDoFinally(Flowable<T> source, Action onFinally) FlowableDoOnEach(Flowable<T> source, Consumer<? super T> onNext, Consumer<? super Throwable> onError, Action onComplete, Action onAfterTerminate) FlowableDoOnLifecycle(Flowable<T> source, Consumer<? super org.reactivestreams.Subscription> onSubscribe, LongConsumer onRequest, Action onCancel) FlowableFromAction(Action action) FlowableOnBackpressureBuffer(Flowable<T> source, int bufferSize, boolean unbounded, boolean delayError, Action onOverflow, Consumer<? super T> onDropped) FlowableOnBackpressureBufferStrategy(Flowable<T> source, long bufferSize, Action onOverflow, BackpressureOverflowStrategy strategy, Consumer<? super T> onDropped) (package private)OnBackpressureBufferStrategySubscriber(org.reactivestreams.Subscriber<? super T> actual, Action onOverflow, BackpressureOverflowStrategy strategy, long bufferSize, Consumer<? super T> onDropped) (package private)SubscriptionLambdaSubscriber(org.reactivestreams.Subscriber<? super T> actual, Consumer<? super org.reactivestreams.Subscription> onSubscribe, LongConsumer onRequest, Action onCancel) -
Uses of Action in io.reactivex.rxjava3.internal.operators.maybe
Fields in io.reactivex.rxjava3.internal.operators.maybe declared as ActionModifier and TypeFieldDescription(package private) final ActionMaybeFromAction.action(package private) final ActionMaybePeek.onAfterTerminate(package private) final ActionMaybeCallbackObserver.onComplete(package private) final ActionMaybePeek.onCompleteCall(package private) final ActionMaybeDoOnLifecycle.MaybeLifecycleObserver.onDispose(package private) final ActionMaybeDoOnLifecycle.onDispose(package private) final ActionMaybePeek.onDisposeCall(package private) final ActionMaybeDoFinally.DoFinallyObserver.onFinally(package private) final ActionMaybeDoFinally.onFinally(package private) final ActionMaybeDoOnTerminate.onTerminateConstructors in io.reactivex.rxjava3.internal.operators.maybe with parameters of type ActionModifierConstructorDescription(package private)DoFinallyObserver(MaybeObserver<? super T> actual, Action onFinally) MaybeCallbackObserver(Consumer<? super T> onSuccess, Consumer<? super Throwable> onError, Action onComplete) MaybeDoFinally(MaybeSource<T> source, Action onFinally) MaybeDoOnLifecycle(Maybe<T> upstream, Consumer<? super Disposable> onSubscribe, Action onDispose) MaybeDoOnTerminate(MaybeSource<T> source, Action onTerminate) MaybeFromAction(Action action) (package private)MaybeLifecycleObserver(MaybeObserver<? super T> downstream, Consumer<? super Disposable> onSubscribe, Action onDispose) MaybePeek(MaybeSource<T> source, Consumer<? super Disposable> onSubscribeCall, Consumer<? super T> onSuccessCall, Consumer<? super Throwable> onErrorCall, Action onCompleteCall, Action onAfterTerminate, Action onDispose) -
Uses of Action in io.reactivex.rxjava3.internal.operators.observable
Classes in io.reactivex.rxjava3.internal.operators.observable that implement ActionModifier and TypeClassDescription(package private) static final classFields in io.reactivex.rxjava3.internal.operators.observable declared as ActionModifier and TypeFieldDescription(package private) final ActionObservableFromAction.action(package private) final ActionObservableDoOnEach.DoOnEachObserver.onAfterTerminate(package private) final ActionObservableDoOnEach.onAfterTerminate(package private) final ActionObservableDoOnEach.DoOnEachObserver.onComplete(package private) final ActionObservableDoOnEach.onCompleteprivate final ActionObservableDoOnLifecycle.onDispose(package private) final ActionObservableDoFinally.DoFinallyObserver.onFinally(package private) final ActionObservableDoFinally.onFinallyMethods in io.reactivex.rxjava3.internal.operators.observable that return ActionModifier and TypeMethodDescriptionstatic <T> ActionObservableInternalHelper.observerOnComplete(Observer<T> observer) Methods in io.reactivex.rxjava3.internal.operators.observable with parameters of type ActionModifier and TypeMethodDescriptionstatic <T> voidObservableBlockingSubscribe.subscribe(ObservableSource<? extends T> o, Consumer<? super T> onNext, Consumer<? super Throwable> onError, Action onComplete) Subscribes to the source and calls the given actions on the current thread.Constructors in io.reactivex.rxjava3.internal.operators.observable with parameters of type ActionModifierConstructorDescription(package private)DoFinallyObserver(Observer<? super T> actual, Action onFinally) (package private)DoOnEachObserver(Observer<? super T> actual, Consumer<? super T> onNext, Consumer<? super Throwable> onError, Action onComplete, Action onAfterTerminate) ObservableDoFinally(ObservableSource<T> source, Action onFinally) ObservableDoOnEach(ObservableSource<T> source, Consumer<? super T> onNext, Consumer<? super Throwable> onError, Action onComplete, Action onAfterTerminate) ObservableDoOnLifecycle(Observable<T> upstream, Consumer<? super Disposable> onSubscribe, Action onDispose) ObservableFromAction(Action action) -
Uses of Action in io.reactivex.rxjava3.internal.operators.parallel
Fields in io.reactivex.rxjava3.internal.operators.parallel declared as ActionModifier and TypeFieldDescription(package private) final ActionParallelPeek.onAfterTerminated(package private) final ActionParallelPeek.onCancel(package private) final ActionParallelPeek.onCompleteConstructors in io.reactivex.rxjava3.internal.operators.parallel with parameters of type ActionModifierConstructorDescriptionParallelPeek(ParallelFlowable<T> source, Consumer<? super T> onNext, Consumer<? super T> onAfterNext, Consumer<? super Throwable> onError, Action onComplete, Action onAfterTerminated, Consumer<? super org.reactivestreams.Subscription> onSubscribe, LongConsumer onRequest, Action onCancel) -
Uses of Action in io.reactivex.rxjava3.internal.operators.single
Subclasses with type arguments of type Action in io.reactivex.rxjava3.internal.operators.singleModifier and TypeClassDescription(package private) static final classFields in io.reactivex.rxjava3.internal.operators.single declared as ActionModifier and TypeFieldDescription(package private) final ActionSingleDoAfterTerminate.DoAfterTerminateObserver.onAfterTerminate(package private) final ActionSingleDoAfterTerminate.onAfterTerminate(package private) final ActionSingleDoOnDispose.onDispose(package private) final ActionSingleDoOnLifecycle.onDispose(package private) final ActionSingleDoOnLifecycle.SingleLifecycleObserver.onDispose(package private) final ActionSingleDoFinally.DoFinallyObserver.onFinally(package private) final ActionSingleDoFinally.onFinally(package private) final ActionSingleDoOnTerminate.onTerminateConstructors in io.reactivex.rxjava3.internal.operators.single with parameters of type ActionModifierConstructorDescription(package private)DoAfterTerminateObserver(SingleObserver<? super T> actual, Action onAfterTerminate) (package private)DoFinallyObserver(SingleObserver<? super T> actual, Action onFinally) (package private)DoOnDisposeObserver(SingleObserver<? super T> actual, Action onDispose) SingleDoAfterTerminate(SingleSource<T> source, Action onAfterTerminate) SingleDoFinally(SingleSource<T> source, Action onFinally) SingleDoOnDispose(SingleSource<T> source, Action onDispose) SingleDoOnLifecycle(Single<T> upstream, Consumer<? super Disposable> onSubscribe, Action onDispose) SingleDoOnTerminate(SingleSource<T> source, Action onTerminate) (package private)SingleLifecycleObserver(SingleObserver<? super T> downstream, Consumer<? super Disposable> onSubscribe, Action onDispose) -
Uses of Action in io.reactivex.rxjava3.internal.subscribers
Fields in io.reactivex.rxjava3.internal.subscribers declared as ActionModifier and TypeFieldDescription(package private) final ActionBoundedSubscriber.onComplete(package private) final ActionDisposableAutoReleaseSubscriber.onComplete(package private) final ActionForEachWhileSubscriber.onComplete(package private) final ActionLambdaSubscriber.onCompleteConstructors in io.reactivex.rxjava3.internal.subscribers with parameters of type ActionModifierConstructorDescriptionBoundedSubscriber(Consumer<? super T> onNext, Consumer<? super Throwable> onError, Action onComplete, Consumer<? super org.reactivestreams.Subscription> onSubscribe, int bufferSize) DisposableAutoReleaseSubscriber(DisposableContainer composite, Consumer<? super T> onNext, Consumer<? super Throwable> onError, Action onComplete) ForEachWhileSubscriber(Predicate<? super T> onNext, Consumer<? super Throwable> onError, Action onComplete) LambdaSubscriber(Consumer<? super T> onNext, Consumer<? super Throwable> onError, Action onComplete, Consumer<? super org.reactivestreams.Subscription> onSubscribe) -
Uses of Action in io.reactivex.rxjava3.internal.util
Classes in io.reactivex.rxjava3.internal.util that implement ActionModifier and TypeClassDescriptionfinal classStores an incoming Throwable (if any) and counts itself down. -
Uses of Action in io.reactivex.rxjava3.parallel
Methods in io.reactivex.rxjava3.parallel with parameters of type ActionModifier and TypeMethodDescriptionfinal @NonNull ParallelFlowable<T> ParallelFlowable.doAfterTerminated(@NonNull Action onAfterTerminate) Run the specifiedActionwhen a 'rail' completes or signals an error.final @NonNull ParallelFlowable<T> ParallelFlowable.doOnCancel(@NonNull Action onCancel) Run the specifiedActionwhen a 'rail' receives a cancellation.final @NonNull ParallelFlowable<T> ParallelFlowable.doOnComplete(@NonNull Action onComplete) Run the specifiedActionwhen a 'rail' completes.