Uses of Interface
io.reactivex.rxjava3.functions.Action
-
Packages that use Action Package Description io.reactivex.rxjava3.core Base reactive classes:Flowable,Observable,Single,MaybeandCompletable; base reactive consumers; other common base interfaces.io.reactivex.rxjava3.disposables Default implementations forDisposable-based resource management (Disposablecontainer types) and utility classes to constructDisposablesfrom callbacks and other types.io.reactivex.rxjava3.internal.functions io.reactivex.rxjava3.internal.observers io.reactivex.rxjava3.internal.operators.completable io.reactivex.rxjava3.internal.operators.flowable io.reactivex.rxjava3.internal.operators.maybe io.reactivex.rxjava3.internal.operators.observable io.reactivex.rxjava3.internal.operators.parallel io.reactivex.rxjava3.internal.operators.single io.reactivex.rxjava3.internal.subscribers io.reactivex.rxjava3.internal.util io.reactivex.rxjava3.parallel Contains the base typeParallelFlowable, a sub-DSL for working withFlowablesequences in parallel. -
-
Uses of Action in io.reactivex.rxjava3.core
Methods in io.reactivex.rxjava3.core with parameters of type Action Modifier and Type Method Description voidCompletable. blockingSubscribe(@NonNull Action onComplete)Subscribes to the currentCompletableand calls givenonCompletecallback on the current thread when it completes normally.voidCompletable. blockingSubscribe(@NonNull Action onComplete, @NonNull Consumer<? super java.lang.Throwable> onError)Subscribes to the currentCompletableand calls the appropriate callback on the current thread when it terminates.voidFlowable. blockingSubscribe(@NonNull Consumer<? super @NonNull T> onNext, @NonNull Consumer<? super java.lang.Throwable> onError, @NonNull Action onComplete)Subscribes to the source and calls the given callbacks on the current thread.voidFlowable. blockingSubscribe(@NonNull Consumer<? super @NonNull T> onNext, @NonNull Consumer<? super java.lang.Throwable> onError, @NonNull Action onComplete, int bufferSize)Subscribes to the source and calls the given callbacks on the current thread.voidMaybe. blockingSubscribe(@NonNull Consumer<? super @NonNull T> onSuccess, @NonNull Consumer<? super java.lang.Throwable> onError, @NonNull Action onComplete)Subscribes to the currentMaybeand calls the appropriate callback on the current thread when it terminates.voidObservable. blockingSubscribe(@NonNull Consumer<? super @NonNull T> onNext, @NonNull Consumer<? super java.lang.Throwable> onError, @NonNull Action onComplete)Subscribes to the source and calls the given callbacks on the current thread.@NonNull CompletableCompletable. doAfterTerminate(@NonNull Action onAfterTerminate)Returns aCompletableinstance that calls the givenonAfterTerminateActionafter thisCompletablecompletes normally or with an exception.@NonNull Flowable<T>Flowable. doAfterTerminate(@NonNull Action onAfterTerminate)@NonNull Maybe<T>Maybe. doAfterTerminate(@NonNull Action onAfterTerminate)@NonNull Observable<T>Observable. doAfterTerminate(@NonNull Action onAfterTerminate)@NonNull Single<T>Single. doAfterTerminate(@NonNull Action onAfterTerminate)@NonNull CompletableCompletable. doFinally(@NonNull Action onFinally)Calls the specifiedActionafter thisCompletablesignalsonErrororonCompleteor gets disposed by the downstream.@NonNull Flowable<T>Flowable. doFinally(@NonNull Action onFinally)Calls the specified action after thisFlowablesignalsonErrororonCompleteor gets canceled by the downstream.@NonNull Maybe<T>Maybe. doFinally(@NonNull Action onFinally)Calls the specified action after thisMaybesignalsonSuccess,onErrororonCompleteor gets disposed by the downstream.@NonNull Observable<T>Observable. doFinally(@NonNull Action onFinally)Calls the specified action after the currentObservablesignalsonErrororonCompletedor gets disposed by the downstream.@NonNull Single<T>Single. doFinally(@NonNull Action onFinally)Calls the specified action after thisSinglesignalsonSuccessoronErroror gets disposed by the downstream.@NonNull Flowable<T>Flowable. doOnCancel(@NonNull Action onCancel)Calls the cancelActionif the downstream cancels the sequence.@NonNull CompletableCompletable. doOnComplete(@NonNull Action onComplete)@NonNull Flowable<T>Flowable. doOnComplete(@NonNull Action onComplete)@NonNull Maybe<T>Maybe. doOnComplete(@NonNull Action onComplete)@NonNull Observable<T>Observable. doOnComplete(@NonNull Action onComplete)@NonNull CompletableCompletable. doOnDispose(@NonNull Action onDispose)Calls the sharedActionif aCompletableObserversubscribed to the currentCompletabledisposes the commonDisposableit received viaonSubscribe.@NonNull Maybe<T>Maybe. doOnDispose(@NonNull Action onDispose)Calls the sharedActionif aMaybeObserversubscribed to the currentMaybedisposes the commonDisposableit received viaonSubscribe.@NonNull Observable<T>Observable. doOnDispose(@NonNull Action onDispose)Calls the given sharedActionif the downstream disposes the sequence.@NonNull Single<T>Single. doOnDispose(@NonNull Action onDispose)Calls the sharedActionif aSingleObserversubscribed to the currentSingledisposes the commonDisposableit received viaonSubscribe.private @NonNull Flowable<T>Flowable. doOnEach(@NonNull Consumer<? super @NonNull T> onNext, @NonNull Consumer<? super java.lang.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 java.lang.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.@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 java.lang.Throwable> onError, Action onComplete, Action onTerminate, Action onAfterTerminate, Action onDispose)Returns aCompletableinstance that calls the various callbacks upon the specific lifecycle events.@NonNull Flowable<T>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).@NonNull Maybe<T>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).@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).@NonNull Single<T>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).@NonNull CompletableCompletable. doOnTerminate(@NonNull Action onTerminate)Returns aCompletableinstance that calls the givenonTerminateActionjust before thisCompletablecompletes normally or with an exception.@NonNull Flowable<T>Flowable. doOnTerminate(@NonNull Action onTerminate)Calls the givenActionwhen the currentFlowablecompletes normally or with an error before those signals are forwarded to the downstream.@NonNull Maybe<T>Maybe. doOnTerminate(@NonNull Action onTerminate)Returns aMaybeinstance that calls the given onTerminate callback just before thisMaybecompletes normally or with an exception.@NonNull Observable<T>Observable. doOnTerminate(@NonNull Action onTerminate)Returns anObservableso that it invokes an action when the currentObservablecallsonCompleteoronError.@NonNull Single<T>Single. doOnTerminate(@NonNull Action onTerminate)Returns aSingleinstance that calls the givenonTerminatecallback just before thisSinglecompletes normally or with an exception.@NonNull DisposableFlowable. forEachWhile(@NonNull Predicate<? super @NonNull T> onNext, @NonNull Consumer<? super java.lang.Throwable> onError, @NonNull Action onComplete)Subscribes to the currentFlowableand receives notifications for each element and the terminal events until theonNextPredicate returnsfalse.@NonNull DisposableObservable. forEachWhile(@NonNull Predicate<? super @NonNull T> onNext, @NonNull Consumer<? super java.lang.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.static <@NonNull T>
@NonNull Flowable<T>Flowable. fromAction(@NonNull Action action)Returns aFlowableinstance that runs the givenActionfor eachSubscriberand emits either its exception or simply completes.static <@NonNull T>
@NonNull Maybe<T>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)@NonNull Flowable<T>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.@NonNull Flowable<T>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.@NonNull Flowable<T>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.@NonNull Flowable<T>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.@NonNull Flowable<T>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.@NonNull DisposableCompletable. subscribe(@NonNull Action onComplete)@NonNull DisposableCompletable. subscribe(@NonNull Action onComplete, @NonNull Consumer<? super java.lang.Throwable> onError)Subscribes to thisCompletableand calls back either theonErrororonCompletefunctions.@NonNull DisposableCompletable. subscribe(@NonNull Action onComplete, @NonNull Consumer<? super java.lang.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.@NonNull DisposableFlowable. subscribe(@NonNull Consumer<? super @NonNull T> onNext, @NonNull Consumer<? super java.lang.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.@NonNull DisposableFlowable. subscribe(@NonNull Consumer<? super @NonNull T> onNext, @NonNull Consumer<? super java.lang.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.@NonNull DisposableMaybe. subscribe(@NonNull Consumer<? super @NonNull T> onSuccess, @NonNull Consumer<? super java.lang.Throwable> onError, @NonNull Action onComplete)Subscribes to aMaybeand provides callbacks to handle the items it emits and any error or completion notification it issues.@NonNull DisposableMaybe. subscribe(@NonNull Consumer<? super @NonNull T> onSuccess, @NonNull Consumer<? super java.lang.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.@NonNull DisposableObservable. subscribe(@NonNull Consumer<? super @NonNull T> onNext, @NonNull Consumer<? super java.lang.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.@NonNull DisposableObservable. subscribe(@NonNull Consumer<? super @NonNull T> onNext, @NonNull Consumer<? super java.lang.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
Methods in io.reactivex.rxjava3.disposables with parameters of type Action Modifier and Type Method Description static @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 Constructor Description ActionDisposable(Action value) -
Uses of Action in io.reactivex.rxjava3.internal.functions
Classes in io.reactivex.rxjava3.internal.functions that implement Action Modifier and Type Class Description (package private) static classFunctions.EmptyAction(package private) static classFunctions.FutureAction(package private) static classFunctions.NotificationOnComplete<T>Fields in io.reactivex.rxjava3.internal.functions declared as Action Modifier and Type Field Description (package private) ActionFunctions.ActionConsumer. actionstatic ActionFunctions. EMPTY_ACTIONMethods in io.reactivex.rxjava3.internal.functions that return Action Modifier and Type Method Description static @NonNull ActionFunctions. futureAction(@NonNull java.util.concurrent.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 Action Modifier and Type Method Description static <T> Consumer<T>Functions. actionConsumer(Action action)Constructors in io.reactivex.rxjava3.internal.functions with parameters of type Action Constructor Description ActionConsumer(Action action) -
Uses of Action in io.reactivex.rxjava3.internal.observers
Fields in io.reactivex.rxjava3.internal.observers declared as Action Modifier and Type Field Description (package private) ActionAbstractDisposableAutoRelease. onComplete(package private) ActionCallbackCompletableObserver. onComplete(package private) ActionForEachWhileObserver. onComplete(package private) ActionLambdaObserver. onComplete(package private) ActionDisposableLambdaObserver. onDisposeMethods in io.reactivex.rxjava3.internal.observers with parameters of type Action Modifier and Type Method Description voidBlockingMultiObserver. blockingConsume(Consumer<? super T> onSuccess, Consumer<? super java.lang.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 Action Constructor Description AbstractDisposableAutoRelease(DisposableContainer composite, Consumer<? super java.lang.Throwable> onError, Action onComplete)CallbackCompletableObserver(Consumer<? super java.lang.Throwable> onError, Action onComplete)DisposableAutoReleaseMultiObserver(DisposableContainer composite, Consumer<? super T> onSuccess, Consumer<? super java.lang.Throwable> onError, Action onComplete)DisposableAutoReleaseObserver(DisposableContainer composite, Consumer<? super T> onNext, Consumer<? super java.lang.Throwable> onError, Action onComplete)DisposableLambdaObserver(Observer<? super T> actual, Consumer<? super Disposable> onSubscribe, Action onDispose)ForEachWhileObserver(Predicate<? super T> onNext, Consumer<? super java.lang.Throwable> onError, Action onComplete)LambdaObserver(Consumer<? super T> onNext, Consumer<? super java.lang.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 Action Modifier and Type Field Description (package private) ActionCompletablePeek. onAfterTerminate(package private) ActionCompletablePeek. onComplete(package private) ActionCompletablePeek. onDispose(package private) ActionCompletableDoFinally.DoFinallyObserver. onFinally(package private) ActionCompletableDoFinally. onFinally(package private) ActionCompletablePeek. onTerminate(package private) ActionCompletableFromAction. runConstructors in io.reactivex.rxjava3.internal.operators.completable with parameters of type Action Constructor Description CompletableDoFinally(CompletableSource source, Action onFinally)CompletableFromAction(Action run)CompletablePeek(CompletableSource source, Consumer<? super Disposable> onSubscribe, Consumer<? super java.lang.Throwable> onError, Action onComplete, Action onTerminate, Action onAfterTerminate, Action onDispose)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 Action Modifier and Type Class Description (package private) static classFlowableInternalHelper.SubscriberOnComplete<T>Fields in io.reactivex.rxjava3.internal.operators.flowable declared as Action Modifier and Type Field Description (package private) ActionFlowableFromAction. action(package private) ActionFlowableDoOnEach.DoOnEachConditionalSubscriber. onAfterTerminate(package private) ActionFlowableDoOnEach.DoOnEachSubscriber. onAfterTerminate(package private) ActionFlowableDoOnEach. onAfterTerminateprivate ActionFlowableDoOnLifecycle. onCancel(package private) ActionFlowableDoOnLifecycle.SubscriptionLambdaSubscriber. onCancel(package private) ActionFlowableDoOnEach.DoOnEachConditionalSubscriber. onComplete(package private) ActionFlowableDoOnEach.DoOnEachSubscriber. onComplete(package private) ActionFlowableDoOnEach. onComplete(package private) ActionFlowableDoFinally.DoFinallyConditionalSubscriber. onFinally(package private) ActionFlowableDoFinally.DoFinallySubscriber. onFinally(package private) ActionFlowableDoFinally. onFinally(package private) ActionFlowableOnBackpressureBuffer.BackpressureBufferSubscriber. onOverflow(package private) ActionFlowableOnBackpressureBuffer. onOverflow(package private) ActionFlowableOnBackpressureBufferStrategy.OnBackpressureBufferStrategySubscriber. onOverflow(package private) ActionFlowableOnBackpressureBufferStrategy. onOverflowMethods in io.reactivex.rxjava3.internal.operators.flowable that return Action Modifier and Type Method Description static <T> ActionFlowableInternalHelper. subscriberOnComplete(org.reactivestreams.Subscriber<T> subscriber)Methods in io.reactivex.rxjava3.internal.operators.flowable with parameters of type Action Modifier and Type Method Description static <T> voidFlowableBlockingSubscribe. subscribe(org.reactivestreams.Publisher<? extends T> o, Consumer<? super T> onNext, Consumer<? super java.lang.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 java.lang.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 Action Constructor Description BackpressureBufferSubscriber(org.reactivestreams.Subscriber<? super T> actual, int bufferSize, boolean unbounded, boolean delayError, Action onOverflow, Consumer<? super T> onDropped)DoFinallyConditionalSubscriber(ConditionalSubscriber<? super T> actual, Action onFinally)DoFinallySubscriber(org.reactivestreams.Subscriber<? super T> actual, Action onFinally)DoOnEachConditionalSubscriber(ConditionalSubscriber<? super T> actual, Consumer<? super T> onNext, Consumer<? super java.lang.Throwable> onError, Action onComplete, Action onAfterTerminate)DoOnEachSubscriber(org.reactivestreams.Subscriber<? super T> actual, Consumer<? super T> onNext, Consumer<? super java.lang.Throwable> onError, Action onComplete, Action onAfterTerminate)FlowableDoFinally(Flowable<T> source, Action onFinally)FlowableDoOnEach(Flowable<T> source, Consumer<? super T> onNext, Consumer<? super java.lang.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)OnBackpressureBufferStrategySubscriber(org.reactivestreams.Subscriber<? super T> actual, Action onOverflow, BackpressureOverflowStrategy strategy, long bufferSize, Consumer<? super T> onDropped)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 Action Modifier and Type Field Description (package private) ActionMaybeFromAction. action(package private) ActionMaybePeek. onAfterTerminate(package private) ActionMaybeCallbackObserver. onComplete(package private) ActionMaybePeek. onCompleteCall(package private) ActionMaybeDoOnLifecycle.MaybeLifecycleObserver. onDispose(package private) ActionMaybeDoOnLifecycle. onDispose(package private) ActionMaybePeek. onDisposeCall(package private) ActionMaybeDoFinally.DoFinallyObserver. onFinally(package private) ActionMaybeDoFinally. onFinally(package private) ActionMaybeDoOnTerminate. onTerminateConstructors in io.reactivex.rxjava3.internal.operators.maybe with parameters of type Action Constructor Description DoFinallyObserver(MaybeObserver<? super T> actual, Action onFinally)MaybeCallbackObserver(Consumer<? super T> onSuccess, Consumer<? super java.lang.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)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 java.lang.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 Action Modifier and Type Class Description (package private) static classObservableInternalHelper.ObserverOnComplete<T>Fields in io.reactivex.rxjava3.internal.operators.observable declared as Action Modifier and Type Field Description (package private) ActionObservableFromAction. action(package private) ActionObservableDoOnEach.DoOnEachObserver. onAfterTerminate(package private) ActionObservableDoOnEach. onAfterTerminate(package private) ActionObservableDoOnEach.DoOnEachObserver. onComplete(package private) ActionObservableDoOnEach. onCompleteprivate ActionObservableDoOnLifecycle. onDispose(package private) ActionObservableDoFinally.DoFinallyObserver. onFinally(package private) ActionObservableDoFinally. onFinallyMethods in io.reactivex.rxjava3.internal.operators.observable that return Action Modifier and Type Method Description static <T> ActionObservableInternalHelper. observerOnComplete(Observer<T> observer)Methods in io.reactivex.rxjava3.internal.operators.observable with parameters of type Action Modifier and Type Method Description static <T> voidObservableBlockingSubscribe. subscribe(ObservableSource<? extends T> o, Consumer<? super T> onNext, Consumer<? super java.lang.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 Action Constructor Description DoFinallyObserver(Observer<? super T> actual, Action onFinally)DoOnEachObserver(Observer<? super T> actual, Consumer<? super T> onNext, Consumer<? super java.lang.Throwable> onError, Action onComplete, Action onAfterTerminate)ObservableDoFinally(ObservableSource<T> source, Action onFinally)ObservableDoOnEach(ObservableSource<T> source, Consumer<? super T> onNext, Consumer<? super java.lang.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 Action Modifier and Type Field Description (package private) ActionParallelPeek. onAfterTerminated(package private) ActionParallelPeek. onCancel(package private) ActionParallelPeek. onCompleteConstructors in io.reactivex.rxjava3.internal.operators.parallel with parameters of type Action Constructor Description ParallelPeek(ParallelFlowable<T> source, Consumer<? super T> onNext, Consumer<? super T> onAfterNext, Consumer<? super java.lang.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
Fields in io.reactivex.rxjava3.internal.operators.single declared as Action Modifier and Type Field Description (package private) ActionSingleDoAfterTerminate.DoAfterTerminateObserver. onAfterTerminate(package private) ActionSingleDoAfterTerminate. onAfterTerminate(package private) ActionSingleDoOnDispose. onDispose(package private) ActionSingleDoOnLifecycle. onDispose(package private) ActionSingleDoOnLifecycle.SingleLifecycleObserver. onDispose(package private) ActionSingleDoFinally.DoFinallyObserver. onFinally(package private) ActionSingleDoFinally. onFinally(package private) ActionSingleDoOnTerminate. onTerminateConstructors in io.reactivex.rxjava3.internal.operators.single with parameters of type Action Constructor Description DoAfterTerminateObserver(SingleObserver<? super T> actual, Action onAfterTerminate)DoFinallyObserver(SingleObserver<? super T> actual, Action onFinally)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)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 Action Modifier and Type Field Description (package private) ActionBoundedSubscriber. onComplete(package private) ActionDisposableAutoReleaseSubscriber. onComplete(package private) ActionForEachWhileSubscriber. onComplete(package private) ActionLambdaSubscriber. onCompleteConstructors in io.reactivex.rxjava3.internal.subscribers with parameters of type Action Constructor Description BoundedSubscriber(Consumer<? super T> onNext, Consumer<? super java.lang.Throwable> onError, Action onComplete, Consumer<? super org.reactivestreams.Subscription> onSubscribe, int bufferSize)DisposableAutoReleaseSubscriber(DisposableContainer composite, Consumer<? super T> onNext, Consumer<? super java.lang.Throwable> onError, Action onComplete)ForEachWhileSubscriber(Predicate<? super T> onNext, Consumer<? super java.lang.Throwable> onError, Action onComplete)LambdaSubscriber(Consumer<? super T> onNext, Consumer<? super java.lang.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 Action Modifier and Type Class Description classBlockingIgnoringReceiverStores 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 Action Modifier and Type Method Description @NonNull ParallelFlowable<T>ParallelFlowable. doAfterTerminated(@NonNull Action onAfterTerminate)Run the specifiedActionwhen a 'rail' completes or signals an error.@NonNull ParallelFlowable<T>ParallelFlowable. doOnCancel(@NonNull Action onCancel)Run the specifiedActionwhen a 'rail' receives a cancellation.@NonNull ParallelFlowable<T>ParallelFlowable. doOnComplete(@NonNull Action onComplete)Run the specifiedActionwhen a 'rail' completes.
-