- accept(T1, T2) - Method in interface io.reactivex.rxjava3.functions.BiConsumer
-
Performs an operation on the given values.
- accept(T) - Method in interface io.reactivex.rxjava3.functions.Consumer
-
Consume the given value.
- accept(long) - Method in interface io.reactivex.rxjava3.functions.LongConsumer
-
Consume a primitive long input.
- Action - Interface in io.reactivex.rxjava3.functions
-
A functional interface similar to Runnable but allows throwing a checked exception.
- add(Disposable) - Method in class io.reactivex.rxjava3.disposables.CompositeDisposable
-
Adds a disposable to this container or disposes it if the
container has been disposed.
- add(Disposable) - Method in class io.reactivex.rxjava3.observers.ResourceCompletableObserver
-
Adds a resource to this ResourceObserver.
- add(Disposable) - Method in class io.reactivex.rxjava3.observers.ResourceMaybeObserver
-
Adds a resource to this ResourceObserver.
- add(Disposable) - Method in class io.reactivex.rxjava3.observers.ResourceObserver
-
Adds a resource to this ResourceObserver.
- add(Disposable) - Method in class io.reactivex.rxjava3.observers.ResourceSingleObserver
-
Adds a resource to this ResourceObserver.
- add(Disposable) - Method in class io.reactivex.rxjava3.subscribers.ResourceSubscriber
-
Adds a resource to this AsyncObserver.
- addAll(Disposable...) - Method in class io.reactivex.rxjava3.disposables.CompositeDisposable
-
Atomically adds the given array of Disposables to the container or
disposes them all if the container has been disposed.
- advanceTimeBy(long, TimeUnit) - Method in class io.reactivex.rxjava3.schedulers.TestScheduler
-
Moves the Scheduler's clock forward by a specified amount of time.
- advanceTimeTo(long, TimeUnit) - Method in class io.reactivex.rxjava3.schedulers.TestScheduler
-
Moves the Scheduler's clock to a particular moment in time.
- all(Predicate<? super T>) - Method in class io.reactivex.rxjava3.core.Flowable
-
Returns a Single that emits a Boolean that indicates whether all of the items emitted by the source
Publisher satisfy a condition.
- all(Predicate<? super T>) - Method in class io.reactivex.rxjava3.core.Observable
-
Returns a Single that emits a Boolean that indicates whether all of the items emitted by the source
ObservableSource satisfy a condition.
- amb(Iterable<? extends CompletableSource>) - Static method in class io.reactivex.rxjava3.core.Completable
-
Returns a Completable which terminates as soon as one of the source Completables
terminates (normally or with an error) and disposes all other Completables.
- amb(Iterable<? extends Publisher<? extends T>>) - Static method in class io.reactivex.rxjava3.core.Flowable
-
Mirrors the one Publisher in an Iterable of several Publishers that first either emits an item or sends
a termination notification.
- amb(Iterable<? extends MaybeSource<? extends T>>) - Static method in class io.reactivex.rxjava3.core.Maybe
-
Runs multiple MaybeSources and signals the events of the first one that signals (disposing
the rest).
- amb(Iterable<? extends ObservableSource<? extends T>>) - Static method in class io.reactivex.rxjava3.core.Observable
-
Mirrors the one ObservableSource in an Iterable of several ObservableSources that first either emits an item or sends
a termination notification.
- amb(Iterable<? extends SingleSource<? extends T>>) - Static method in class io.reactivex.rxjava3.core.Single
-
Runs multiple SingleSources and signals the events of the first one that signals (disposing
the rest).
- ambArray(CompletableSource...) - Static method in class io.reactivex.rxjava3.core.Completable
-
Returns a Completable which terminates as soon as one of the source Completables
terminates (normally or with an error) and disposes all other Completables.
- ambArray(Publisher<? extends T>...) - Static method in class io.reactivex.rxjava3.core.Flowable
-
Mirrors the one Publisher in an array of several Publishers that first either emits an item or sends
a termination notification.
- ambArray(MaybeSource<? extends T>...) - Static method in class io.reactivex.rxjava3.core.Maybe
-
Runs multiple MaybeSources and signals the events of the first one that signals (disposing
the rest).
- ambArray(ObservableSource<? extends T>...) - Static method in class io.reactivex.rxjava3.core.Observable
-
Mirrors the one ObservableSource in an array of several ObservableSources that first either emits an item or sends
a termination notification.
- ambArray(SingleSource<? extends T>...) - Static method in class io.reactivex.rxjava3.core.Single
-
Runs multiple SingleSources and signals the events of the first one that signals (disposing
the rest).
- ambWith(CompletableSource) - Method in class io.reactivex.rxjava3.core.Completable
-
Returns a Completable that emits the a terminated event of either this Completable
or the other Completable whichever fires first.
- ambWith(Publisher<? extends T>) - Method in class io.reactivex.rxjava3.core.Flowable
-
Mirrors the Publisher (current or provided) that first either emits an item or sends a termination
notification.
- ambWith(MaybeSource<? extends T>) - Method in class io.reactivex.rxjava3.core.Maybe
-
Mirrors the MaybeSource (current or provided) that first signals an event.
- ambWith(ObservableSource<? extends T>) - Method in class io.reactivex.rxjava3.core.Observable
-
Mirrors the ObservableSource (current or provided) that first either emits an item or sends a termination
notification.
- ambWith(SingleSource<? extends T>) - Method in class io.reactivex.rxjava3.core.Single
-
Signals the event of this or the other SingleSource whichever signals first.
- andThen(ObservableSource<T>) - Method in class io.reactivex.rxjava3.core.Completable
-
Returns an Observable which will subscribe to this Completable and once that is completed then
will subscribe to the next
ObservableSource.
- andThen(Publisher<T>) - Method in class io.reactivex.rxjava3.core.Completable
-
Returns a Flowable which will subscribe to this Completable and once that is completed then
will subscribe to the next
Flowable.
- andThen(SingleSource<T>) - Method in class io.reactivex.rxjava3.core.Completable
-
Returns a Single which will subscribe to this Completable and once that is completed then
will subscribe to the next
SingleSource.
- andThen(MaybeSource<T>) - Method in class io.reactivex.rxjava3.core.Completable
-
Returns a
Maybe
which will subscribe to this Completable and once that is completed then
will subscribe to the
next
MaybeSource.
- andThen(CompletableSource) - Method in class io.reactivex.rxjava3.core.Completable
-
Returns a Completable that first runs this Completable
and then the other completable.
- any(Predicate<? super T>) - Method in class io.reactivex.rxjava3.core.Flowable
-
Returns a Single that emits true
if any item emitted by the source Publisher satisfies a
specified condition, otherwise false
.
- any(Predicate<? super T>) - Method in class io.reactivex.rxjava3.core.Observable
-
Returns a Single that emits true
if any item emitted by the source ObservableSource satisfies a
specified condition, otherwise false
.
- apply(Completable) - Method in interface io.reactivex.rxjava3.core.CompletableConverter
-
Applies a function to the upstream Completable and returns a converted value of type R
.
- apply(CompletableObserver) - Method in interface io.reactivex.rxjava3.core.CompletableOperator
-
Applies a function to the child CompletableObserver and returns a new parent CompletableObserver.
- apply(Completable) - Method in interface io.reactivex.rxjava3.core.CompletableTransformer
-
Applies a function to the upstream Completable and returns a CompletableSource.
- apply(Flowable<T>) - Method in interface io.reactivex.rxjava3.core.FlowableConverter
-
Applies a function to the upstream Flowable and returns a converted value of type R
.
- apply(Subscriber<? super Downstream>) - Method in interface io.reactivex.rxjava3.core.FlowableOperator
-
Applies a function to the child Subscriber and returns a new parent Subscriber.
- apply(Flowable<Upstream>) - Method in interface io.reactivex.rxjava3.core.FlowableTransformer
-
Applies a function to the upstream Flowable and returns a Publisher with
optionally different element type.
- apply(Maybe<T>) - Method in interface io.reactivex.rxjava3.core.MaybeConverter
-
Applies a function to the upstream Maybe and returns a converted value of type R
.
- apply(MaybeObserver<? super Downstream>) - Method in interface io.reactivex.rxjava3.core.MaybeOperator
-
Applies a function to the child MaybeObserver and returns a new parent MaybeObserver.
- apply(Maybe<Upstream>) - Method in interface io.reactivex.rxjava3.core.MaybeTransformer
-
Applies a function to the upstream Maybe and returns a MaybeSource with
optionally different element type.
- apply(Observable<T>) - Method in interface io.reactivex.rxjava3.core.ObservableConverter
-
Applies a function to the upstream Observable and returns a converted value of type R
.
- apply(Observer<? super Downstream>) - Method in interface io.reactivex.rxjava3.core.ObservableOperator
-
Applies a function to the child Observer and returns a new parent Observer.
- apply(Observable<Upstream>) - Method in interface io.reactivex.rxjava3.core.ObservableTransformer
-
Applies a function to the upstream Observable and returns an ObservableSource with
optionally different element type.
- apply(Single<T>) - Method in interface io.reactivex.rxjava3.core.SingleConverter
-
Applies a function to the upstream Single and returns a converted value of type R
.
- apply(SingleObserver<? super Downstream>) - Method in interface io.reactivex.rxjava3.core.SingleOperator
-
Applies a function to the child SingleObserver and returns a new parent SingleObserver.
- apply(Single<Upstream>) - Method in interface io.reactivex.rxjava3.core.SingleTransformer
-
Applies a function to the upstream Single and returns a SingleSource with
optionally different element type.
- apply(T1, T2) - Method in interface io.reactivex.rxjava3.functions.BiFunction
-
Calculate a value based on the input values.
- apply(T) - Method in interface io.reactivex.rxjava3.functions.Function
-
Apply some calculation to the input value and return some other value.
- apply(T1, T2, T3) - Method in interface io.reactivex.rxjava3.functions.Function3
-
Calculate a value based on the input values.
- apply(T1, T2, T3, T4) - Method in interface io.reactivex.rxjava3.functions.Function4
-
Calculate a value based on the input values.
- apply(T1, T2, T3, T4, T5) - Method in interface io.reactivex.rxjava3.functions.Function5
-
Calculate a value based on the input values.
- apply(T1, T2, T3, T4, T5, T6) - Method in interface io.reactivex.rxjava3.functions.Function6
-
Calculate a value based on the input values.
- apply(T1, T2, T3, T4, T5, T6, T7) - Method in interface io.reactivex.rxjava3.functions.Function7
-
Calculate a value based on the input values.
- apply(T1, T2, T3, T4, T5, T6, T7, T8) - Method in interface io.reactivex.rxjava3.functions.Function8
-
Calculate a value based on the input values.
- apply(T1, T2, T3, T4, T5, T6, T7, T8, T9) - Method in interface io.reactivex.rxjava3.functions.Function9
-
Calculate a value based on the input values.
- apply(int) - Method in interface io.reactivex.rxjava3.functions.IntFunction
-
Calculates a value based on a primitive integer input.
- apply(Long, Throwable) - Method in enum io.reactivex.rxjava3.parallel.ParallelFailureHandling
-
- apply(ParallelFlowable<T>) - Method in interface io.reactivex.rxjava3.parallel.ParallelFlowableConverter
-
Applies a function to the upstream ParallelFlowable and returns a converted value of type R
.
- apply(ParallelFlowable<Upstream>) - Method in interface io.reactivex.rxjava3.parallel.ParallelTransformer
-
Applies a function to the upstream ParallelFlowable and returns a ParallelFlowable with
optionally different element type.
- assertComplete() - Method in class io.reactivex.rxjava3.observers.BaseTestConsumer
-
Assert that this TestObserver/TestSubscriber received exactly one onComplete event.
- assertEmpty() - Method in class io.reactivex.rxjava3.observers.BaseTestConsumer
-
Assert that the TestObserver/TestSubscriber has received a Disposable but no other events.
- assertError(Throwable) - Method in class io.reactivex.rxjava3.observers.BaseTestConsumer
-
Assert that this TestObserver/TestSubscriber received exactly the specified onError event value.
- assertError(Class<? extends Throwable>) - Method in class io.reactivex.rxjava3.observers.BaseTestConsumer
-
Asserts that this TestObserver/TestSubscriber received exactly one onError event which is an
instance of the specified errorClass class.
- assertError(Predicate<Throwable>) - Method in class io.reactivex.rxjava3.observers.BaseTestConsumer
-
Asserts that this TestObserver/TestSubscriber received exactly one onError event for which
the provided predicate returns true.
- assertFailure(Class<? extends Throwable>, T...) - Method in class io.reactivex.rxjava3.observers.BaseTestConsumer
-
Assert that the upstream signalled the specified values in order
and then failed with a specific class or subclass of Throwable.
- assertNoErrors() - Method in class io.reactivex.rxjava3.observers.BaseTestConsumer
-
Assert that this TestObserver/TestSubscriber has not received any onError event.
- assertNotComplete() - Method in class io.reactivex.rxjava3.observers.BaseTestConsumer
-
Assert that this TestObserver/TestSubscriber has not received any onComplete event.
- assertNoValues() - Method in class io.reactivex.rxjava3.observers.BaseTestConsumer
-
Assert that this TestObserver/TestSubscriber has not received any onNext events.
- assertResult(T...) - Method in class io.reactivex.rxjava3.observers.BaseTestConsumer
-
Assert that the upstream signalled the specified values in order and
completed normally.
- assertSubscribed() - Method in class io.reactivex.rxjava3.observers.BaseTestConsumer
-
Assert that the onSubscribe method was called exactly once.
- assertSubscribed() - Method in class io.reactivex.rxjava3.observers.TestObserver
-
Assert that the onSubscribe method was called exactly once.
- assertSubscribed() - Method in class io.reactivex.rxjava3.subscribers.TestSubscriber
-
Assert that the onSubscribe method was called exactly once.
- assertValue(T) - Method in class io.reactivex.rxjava3.observers.BaseTestConsumer
-
Assert that this TestObserver/TestSubscriber received exactly one onNext value which is equal to
the given value with respect to Objects.equals.
- assertValue(Predicate<T>) - Method in class io.reactivex.rxjava3.observers.BaseTestConsumer
-
Asserts that this TestObserver/TestSubscriber received exactly one onNext value for which
the provided predicate returns true.
- assertValueAt(int, T) - Method in class io.reactivex.rxjava3.observers.BaseTestConsumer
-
Asserts that this TestObserver/TestSubscriber received an onNext value at the given index
which is equal to the given value with respect to null-safe Object.equals.
- assertValueAt(int, Predicate<T>) - Method in class io.reactivex.rxjava3.observers.BaseTestConsumer
-
Asserts that this TestObserver/TestSubscriber received an onNext value at the given index
for the provided predicate returns true.
- assertValueCount(int) - Method in class io.reactivex.rxjava3.observers.BaseTestConsumer
-
Assert that this TestObserver/TestSubscriber received the specified number onNext events.
- assertValues(T...) - Method in class io.reactivex.rxjava3.observers.BaseTestConsumer
-
Assert that the TestObserver/TestSubscriber received only the specified values in the specified order.
- assertValueSequence(Iterable<? extends T>) - Method in class io.reactivex.rxjava3.observers.BaseTestConsumer
-
Assert that the TestObserver/TestSubscriber received only the specified sequence of values in the same order.
- assertValuesOnly(T...) - Method in class io.reactivex.rxjava3.observers.BaseTestConsumer
-
Assert that the TestObserver/TestSubscriber received only the specified values in the specified order without terminating.
- AsyncProcessor<T> - Class in io.reactivex.rxjava3.processors
-
Processor that emits the very last value followed by a completion event or the received error
to
Subscriber
s.
- AsyncSubject<T> - Class in io.reactivex.rxjava3.subjects
-
A Subject that emits the very last value followed by a completion event or the received error to Observers.
- autoConnect() - Method in class io.reactivex.rxjava3.flowables.ConnectableFlowable
-
Returns a Flowable that automatically connects (at most once) to this ConnectableFlowable
when the first Subscriber subscribes.
- autoConnect(int) - Method in class io.reactivex.rxjava3.flowables.ConnectableFlowable
-
Returns a Flowable that automatically connects (at most once) to this ConnectableFlowable
when the specified number of Subscribers subscribe to it.
- autoConnect(int, Consumer<? super Disposable>) - Method in class io.reactivex.rxjava3.flowables.ConnectableFlowable
-
Returns a Flowable that automatically connects (at most once) to this ConnectableFlowable
when the specified number of Subscribers subscribe to it and calls the
specified callback with the Subscription associated with the established connection.
- autoConnect() - Method in class io.reactivex.rxjava3.observables.ConnectableObservable
-
Returns an Observable that automatically connects (at most once) to this ConnectableObservable
when the first Observer subscribes.
- autoConnect(int) - Method in class io.reactivex.rxjava3.observables.ConnectableObservable
-
Returns an Observable that automatically connects (at most once) to this ConnectableObservable
when the specified number of Observers subscribe to it.
- autoConnect(int, Consumer<? super Disposable>) - Method in class io.reactivex.rxjava3.observables.ConnectableObservable
-
Returns an Observable that automatically connects (at most once) to this ConnectableObservable
when the specified number of Subscribers subscribe to it and calls the
specified callback with the Subscription associated with the established connection.
- await() - Method in class io.reactivex.rxjava3.observers.BaseTestConsumer
-
Awaits until this TestObserver/TestSubscriber receives an onError or onComplete events.
- await(long, TimeUnit) - Method in class io.reactivex.rxjava3.observers.BaseTestConsumer
-
Awaits the specified amount of time or until this TestObserver/TestSubscriber
receives an onError or onComplete events, whichever happens first.
- awaitCount(int) - Method in class io.reactivex.rxjava3.observers.BaseTestConsumer
-
Await until the TestObserver/TestSubscriber receives the given
number of items or terminates by sleeping 10 milliseconds at a time
up to 5000 milliseconds of timeout.
- awaitDone(long, TimeUnit) - Method in class io.reactivex.rxjava3.observers.BaseTestConsumer
-
Awaits until the internal latch is counted down.
- BackpressureKind - Enum in io.reactivex.rxjava3.annotations
-
Enumeration for various kinds of backpressure support.
- BackpressureOverflowStrategy - Enum in io.reactivex.rxjava3.core
-
Options to deal with buffer overflow when using onBackpressureBuffer.
- BackpressureStrategy - Enum in io.reactivex.rxjava3.core
-
Represents the options for applying backpressure to a source sequence.
- BackpressureSupport - Annotation Type in io.reactivex.rxjava3.annotations
-
Indicates the backpressure support kind of the associated operator or class.
- BaseTestConsumer<T,U extends BaseTestConsumer<T,U>> - Class in io.reactivex.rxjava3.observers
-
Base class with shared infrastructure to support TestSubscriber and TestObserver.
- BaseTestConsumer() - Constructor for class io.reactivex.rxjava3.observers.BaseTestConsumer
-
- BehaviorProcessor<T> - Class in io.reactivex.rxjava3.processors
-
Processor that emits the most recent item it has observed and all subsequent observed items to each subscribed
Subscriber
.
- BehaviorSubject<T> - Class in io.reactivex.rxjava3.subjects
-
Subject that emits the most recent item it has observed and all subsequent observed items to each subscribed
Observer
.
- Beta - Annotation Type in io.reactivex.rxjava3.annotations
-
Indicates the feature is in beta state: it will be most likely stay but
the signature may change between versions without warning.
- BiConsumer<T1,T2> - Interface in io.reactivex.rxjava3.functions
-
A functional interface (callback) that accepts two values (of possibly different types).
- BiFunction<T1,T2,R> - Interface in io.reactivex.rxjava3.functions
-
A functional interface (callback) that computes a value based on multiple input values.
- BiPredicate<T1,T2> - Interface in io.reactivex.rxjava3.functions
-
A functional interface (callback) that returns true or false for the given input values.
- blockingAwait() - Method in class io.reactivex.rxjava3.core.Completable
-
Subscribes to and awaits the termination of this Completable instance in a blocking manner and
rethrows any exception emitted.
- blockingAwait(long, TimeUnit) - Method in class io.reactivex.rxjava3.core.Completable
-
Subscribes to and awaits the termination of this Completable instance in a blocking manner
with a specific timeout and rethrows any exception emitted within the timeout window.
- blockingFirst() - Method in class io.reactivex.rxjava3.core.Flowable
-
Returns the first item emitted by this Flowable
, or throws
NoSuchElementException
if it emits no items.
- blockingFirst(T) - Method in class io.reactivex.rxjava3.core.Flowable
-
Returns the first item emitted by this Flowable
, or a default value if it emits no
items.
- blockingFirst() - Method in class io.reactivex.rxjava3.core.Observable
-
Returns the first item emitted by this Observable
, or throws
NoSuchElementException
if it emits no items.
- blockingFirst(T) - Method in class io.reactivex.rxjava3.core.Observable
-
Returns the first item emitted by this Observable
, or a default value if it emits no
items.
- blockingForEach(Consumer<? super T>) - Method in class io.reactivex.rxjava3.core.Flowable
-
Consumes the upstream Flowable
in a blocking fashion and invokes the given
Consumer
with each upstream item on the current thread until the
upstream terminates.
- blockingForEach(Consumer<? super T>) - Method in class io.reactivex.rxjava3.core.Observable
-
Consumes the upstream Observable
in a blocking fashion and invokes the given
Consumer
with each upstream item on the current thread until the
upstream terminates.
- blockingGet() - Method in class io.reactivex.rxjava3.core.Maybe
-
Waits in a blocking fashion until the current Maybe signals a success value (which is returned),
null if completed or an exception (which is propagated).
- blockingGet(T) - Method in class io.reactivex.rxjava3.core.Maybe
-
Waits in a blocking fashion until the current Maybe signals a success value (which is returned),
defaultValue if completed or an exception (which is propagated).
- blockingGet() - Method in class io.reactivex.rxjava3.core.Single
-
Waits in a blocking fashion until the current Single signals a success value (which is returned) or
an exception (which is propagated).
- blockingIterable() - Method in class io.reactivex.rxjava3.core.Flowable
-
Converts this
Flowable
into an
Iterable
.
- blockingIterable(int) - Method in class io.reactivex.rxjava3.core.Flowable
-
Converts this
Flowable
into an
Iterable
.
- blockingIterable() - Method in class io.reactivex.rxjava3.core.Observable
-
Converts this
Observable
into an
Iterable
.
- blockingIterable(int) - Method in class io.reactivex.rxjava3.core.Observable
-
Converts this
Observable
into an
Iterable
.
- blockingLast() - Method in class io.reactivex.rxjava3.core.Flowable
-
Returns the last item emitted by this Flowable
, or throws
NoSuchElementException
if this Flowable
emits no items.
- blockingLast(T) - Method in class io.reactivex.rxjava3.core.Flowable
-
Returns the last item emitted by this Flowable
, or a default value if it emits no
items.
- blockingLast() - Method in class io.reactivex.rxjava3.core.Observable
-
Returns the last item emitted by this Observable
, or throws
NoSuchElementException
if this Observable
emits no items.
- blockingLast(T) - Method in class io.reactivex.rxjava3.core.Observable
-
Returns the last item emitted by this Observable
, or a default value if it emits no
items.
- blockingLatest() - Method in class io.reactivex.rxjava3.core.Flowable
-
Returns an
Iterable
that returns the latest item emitted by this
Flowable
,
waiting if necessary for one to become available.
- blockingLatest() - Method in class io.reactivex.rxjava3.core.Observable
-
Returns an
Iterable
that returns the latest item emitted by this
Observable
,
waiting if necessary for one to become available.
- blockingMostRecent(T) - Method in class io.reactivex.rxjava3.core.Flowable
-
Returns an
Iterable
that always returns the item most recently emitted by this
Flowable
.
- blockingMostRecent(T) - Method in class io.reactivex.rxjava3.core.Observable
-
Returns an
Iterable
that always returns the item most recently emitted by this
Observable
.
- blockingNext() - Method in class io.reactivex.rxjava3.core.Flowable
-
Returns an
Iterable
that blocks until this
Flowable
emits another item, then
returns that item.
- blockingNext() - Method in class io.reactivex.rxjava3.core.Observable
-
Returns an
Iterable
that blocks until this
Observable
emits another item, then
returns that item.
- blockingSingle() - Method in class io.reactivex.rxjava3.core.Flowable
-
If this Flowable
completes after emitting a single item, return that item, otherwise
throw a NoSuchElementException
.
- blockingSingle(T) - Method in class io.reactivex.rxjava3.core.Flowable
-
If this Flowable
completes after emitting a single item, return that item; if it emits
more than one item, throw an IllegalArgumentException
; if it emits no items, return a default
value.
- blockingSingle() - Method in class io.reactivex.rxjava3.core.Observable
-
If this Observable
completes after emitting a single item, return that item, otherwise
throw a NoSuchElementException
.
- blockingSingle(T) - Method in class io.reactivex.rxjava3.core.Observable
-
If this Observable
completes after emitting a single item, return that item; if it emits
more than one item, throw an IllegalArgumentException
; if it emits no items, return a default
value.
- blockingSubscribe() - Method in class io.reactivex.rxjava3.core.Flowable
-
Runs the source Flowable to a terminal event, ignoring any values and rethrowing any exception.
- blockingSubscribe(Consumer<? super T>) - Method in class io.reactivex.rxjava3.core.Flowable
-
Subscribes to the source and calls the given callbacks on the current thread.
- blockingSubscribe(Consumer<? super T>, int) - Method in class io.reactivex.rxjava3.core.Flowable
-
Subscribes to the source and calls the given callbacks on the current thread.
- blockingSubscribe(Consumer<? super T>, Consumer<? super Throwable>) - Method in class io.reactivex.rxjava3.core.Flowable
-
Subscribes to the source and calls the given callbacks on the current thread.
- blockingSubscribe(Consumer<? super T>, Consumer<? super Throwable>, int) - Method in class io.reactivex.rxjava3.core.Flowable
-
Subscribes to the source and calls the given callbacks on the current thread.
- blockingSubscribe(Consumer<? super T>, Consumer<? super Throwable>, Action) - Method in class io.reactivex.rxjava3.core.Flowable
-
Subscribes to the source and calls the given callbacks on the current thread.
- blockingSubscribe(Consumer<? super T>, Consumer<? super Throwable>, Action, int) - Method in class io.reactivex.rxjava3.core.Flowable
-
Subscribes to the source and calls the given callbacks on the current thread.
- blockingSubscribe(Subscriber<? super T>) - Method in class io.reactivex.rxjava3.core.Flowable
-
Subscribes to the source and calls the
Subscriber
methods
on the current thread.
- blockingSubscribe() - Method in class io.reactivex.rxjava3.core.Observable
-
Runs the source observable to a terminal event, ignoring any values and rethrowing any exception.
- blockingSubscribe(Consumer<? super T>) - Method in class io.reactivex.rxjava3.core.Observable
-
Subscribes to the source and calls the given callbacks on the current thread.
- blockingSubscribe(Consumer<? super T>, Consumer<? super Throwable>) - Method in class io.reactivex.rxjava3.core.Observable
-
Subscribes to the source and calls the given callbacks on the current thread.
- blockingSubscribe(Consumer<? super T>, Consumer<? super Throwable>, Action) - Method in class io.reactivex.rxjava3.core.Observable
-
Subscribes to the source and calls the given callbacks on the current thread.
- blockingSubscribe(Observer<? super T>) - Method in class io.reactivex.rxjava3.core.Observable
-
Subscribes to the source and calls the
Observer
methods
on the current thread.
- BooleanSupplier - Interface in io.reactivex.rxjava3.functions
-
A functional interface (callback) that returns a boolean value.
- buffer(int) - Method in class io.reactivex.rxjava3.core.Flowable
-
Returns a Flowable that emits buffers of items it collects from the source Publisher.
- buffer(int, int) - Method in class io.reactivex.rxjava3.core.Flowable
-
Returns a Flowable that emits buffers of items it collects from the source Publisher.
- buffer(int, int, Supplier<U>) - Method in class io.reactivex.rxjava3.core.Flowable
-
Returns a Flowable that emits buffers of items it collects from the source Publisher.
- buffer(int, Supplier<U>) - Method in class io.reactivex.rxjava3.core.Flowable
-
Returns a Flowable that emits buffers of items it collects from the source Publisher.
- buffer(long, long, TimeUnit) - Method in class io.reactivex.rxjava3.core.Flowable
-
Returns a Flowable that emits buffers of items it collects from the source Publisher.
- buffer(long, long, TimeUnit, Scheduler) - Method in class io.reactivex.rxjava3.core.Flowable
-
Returns a Flowable that emits buffers of items it collects from the source Publisher.
- buffer(long, long, TimeUnit, Scheduler, Supplier<U>) - Method in class io.reactivex.rxjava3.core.Flowable
-
Returns a Flowable that emits buffers of items it collects from the source Publisher.
- buffer(long, TimeUnit) - Method in class io.reactivex.rxjava3.core.Flowable
-
Returns a Flowable that emits buffers of items it collects from the source Publisher.
- buffer(long, TimeUnit, int) - Method in class io.reactivex.rxjava3.core.Flowable
-
Returns a Flowable that emits buffers of items it collects from the source Publisher.
- buffer(long, TimeUnit, Scheduler, int) - Method in class io.reactivex.rxjava3.core.Flowable
-
Returns a Flowable that emits buffers of items it collects from the source Publisher.
- buffer(long, TimeUnit, Scheduler, int, Supplier<U>, boolean) - Method in class io.reactivex.rxjava3.core.Flowable
-
Returns a Flowable that emits buffers of items it collects from the source Publisher.
- buffer(long, TimeUnit, Scheduler) - Method in class io.reactivex.rxjava3.core.Flowable
-
Returns a Flowable that emits buffers of items it collects from the source Publisher.
- buffer(Flowable<? extends TOpening>, Function<? super TOpening, ? extends Publisher<? extends TClosing>>) - Method in class io.reactivex.rxjava3.core.Flowable
-
Returns a Flowable that emits buffers of items it collects from the source Publisher.
- buffer(Flowable<? extends TOpening>, Function<? super TOpening, ? extends Publisher<? extends TClosing>>, Supplier<U>) - Method in class io.reactivex.rxjava3.core.Flowable
-
Returns a Flowable that emits buffers of items it collects from the source Publisher.
- buffer(Publisher<B>) - Method in class io.reactivex.rxjava3.core.Flowable
-
Returns a Flowable that emits non-overlapping buffered items from the source Publisher each time the
specified boundary Publisher emits an item.
- buffer(Publisher<B>, int) - Method in class io.reactivex.rxjava3.core.Flowable
-
Returns a Flowable that emits non-overlapping buffered items from the source Publisher each time the
specified boundary Publisher emits an item.
- buffer(Publisher<B>, Supplier<U>) - Method in class io.reactivex.rxjava3.core.Flowable
-
Returns a Flowable that emits non-overlapping buffered items from the source Publisher each time the
specified boundary Publisher emits an item.
- buffer(int) - Method in class io.reactivex.rxjava3.core.Observable
-
Returns an Observable that emits buffers of items it collects from the source ObservableSource.
- buffer(int, int) - Method in class io.reactivex.rxjava3.core.Observable
-
Returns an Observable that emits buffers of items it collects from the source ObservableSource.
- buffer(int, int, Supplier<U>) - Method in class io.reactivex.rxjava3.core.Observable
-
Returns an Observable that emits buffers of items it collects from the source ObservableSource.
- buffer(int, Supplier<U>) - Method in class io.reactivex.rxjava3.core.Observable
-
Returns an Observable that emits buffers of items it collects from the source ObservableSource.
- buffer(long, long, TimeUnit) - Method in class io.reactivex.rxjava3.core.Observable
-
Returns an Observable that emits buffers of items it collects from the source ObservableSource.
- buffer(long, long, TimeUnit, Scheduler) - Method in class io.reactivex.rxjava3.core.Observable
-
Returns an Observable that emits buffers of items it collects from the source ObservableSource.
- buffer(long, long, TimeUnit, Scheduler, Supplier<U>) - Method in class io.reactivex.rxjava3.core.Observable
-
Returns an Observable that emits buffers of items it collects from the source ObservableSource.
- buffer(long, TimeUnit) - Method in class io.reactivex.rxjava3.core.Observable
-
Returns an Observable that emits buffers of items it collects from the source ObservableSource.
- buffer(long, TimeUnit, int) - Method in class io.reactivex.rxjava3.core.Observable
-
Returns an Observable that emits buffers of items it collects from the source ObservableSource.
- buffer(long, TimeUnit, Scheduler, int) - Method in class io.reactivex.rxjava3.core.Observable
-
Returns an Observable that emits buffers of items it collects from the source ObservableSource.
- buffer(long, TimeUnit, Scheduler, int, Supplier<U>, boolean) - Method in class io.reactivex.rxjava3.core.Observable
-
Returns an Observable that emits buffers of items it collects from the source ObservableSource.
- buffer(long, TimeUnit, Scheduler) - Method in class io.reactivex.rxjava3.core.Observable
-
Returns an Observable that emits buffers of items it collects from the source ObservableSource.
- buffer(ObservableSource<? extends TOpening>, Function<? super TOpening, ? extends ObservableSource<? extends TClosing>>) - Method in class io.reactivex.rxjava3.core.Observable
-
Returns an Observable that emits buffers of items it collects from the source ObservableSource.
- buffer(ObservableSource<? extends TOpening>, Function<? super TOpening, ? extends ObservableSource<? extends TClosing>>, Supplier<U>) - Method in class io.reactivex.rxjava3.core.Observable
-
Returns an Observable that emits buffers of items it collects from the source ObservableSource.
- buffer(ObservableSource<B>) - Method in class io.reactivex.rxjava3.core.Observable
-
Returns an Observable that emits non-overlapping buffered items from the source ObservableSource each time the
specified boundary ObservableSource emits an item.
- buffer(ObservableSource<B>, int) - Method in class io.reactivex.rxjava3.core.Observable
-
Returns an Observable that emits non-overlapping buffered items from the source ObservableSource each time the
specified boundary ObservableSource emits an item.
- buffer(ObservableSource<B>, Supplier<U>) - Method in class io.reactivex.rxjava3.core.Observable
-
Returns an Observable that emits non-overlapping buffered items from the source ObservableSource each time the
specified boundary ObservableSource emits an item.
- bufferSize() - Static method in class io.reactivex.rxjava3.core.Flowable
-
Returns the default internal buffer size used by most async operators.
- bufferSize() - Static method in class io.reactivex.rxjava3.core.Observable
-
Returns the default 'island' size or capacity-increment hint for unbounded buffers.
- cache() - Method in class io.reactivex.rxjava3.core.Completable
-
Subscribes to this Completable only once, when the first CompletableObserver
subscribes to the result Completable, caches its terminal event
and relays/replays it to observers.
- cache() - Method in class io.reactivex.rxjava3.core.Flowable
-
Returns a Flowable that subscribes to this Publisher lazily, caches all of its events
and replays them, in the same order as received, to all the downstream subscribers.
- cache() - Method in class io.reactivex.rxjava3.core.Maybe
-
Returns a Maybe that subscribes to this Maybe lazily, caches its event
and replays it, to all the downstream subscribers.
- cache() - Method in class io.reactivex.rxjava3.core.Observable
-
Returns an Observable that subscribes to this ObservableSource lazily, caches all of its events
and replays them, in the same order as received, to all the downstream subscribers.
- cache() - Method in class io.reactivex.rxjava3.core.Single
-
Stores the success value or exception from the current Single and replays it to late SingleObservers.
- cacheWithInitialCapacity(int) - Method in class io.reactivex.rxjava3.core.Flowable
-
Returns a Flowable that subscribes to this Publisher lazily, caches all of its events
and replays them, in the same order as received, to all the downstream subscribers.
- cacheWithInitialCapacity(int) - Method in class io.reactivex.rxjava3.core.Observable
-
Returns an Observable that subscribes to this ObservableSource lazily, caches all of its events
and replays them, in the same order as received, to all the downstream subscribers.
- cancel() - Method in interface io.reactivex.rxjava3.functions.Cancellable
-
Cancel the action or free a resource.
- cancel() - Method in class io.reactivex.rxjava3.observers.DefaultObserver
-
Cancels the upstream's disposable.
- cancel() - Method in class io.reactivex.rxjava3.subscribers.DefaultSubscriber
-
Cancels the upstream's Subscription.
- cancel() - Method in class io.reactivex.rxjava3.subscribers.DisposableSubscriber
-
Cancels the Subscription set via onSubscribe or makes sure a
Subscription set asynchronously (later) is cancelled immediately.
- cancel() - Method in class io.reactivex.rxjava3.subscribers.SafeSubscriber
-
- cancel() - Method in class io.reactivex.rxjava3.subscribers.SerializedSubscriber
-
- cancel() - Method in class io.reactivex.rxjava3.subscribers.TestSubscriber
-
- Cancellable - Interface in io.reactivex.rxjava3.functions
-
A functional interface that has a single cancel method
that can throw.
- cast(Class<U>) - Method in class io.reactivex.rxjava3.core.Flowable
-
Returns a Flowable that emits the items emitted by the source Publisher, converted to the specified
type.
- cast(Class<? extends U>) - Method in class io.reactivex.rxjava3.core.Maybe
-
Casts the success value of the current Maybe into the target type or signals a
ClassCastException if not compatible.
- cast(Class<U>) - Method in class io.reactivex.rxjava3.core.Observable
-
Returns an Observable that emits the items emitted by the source ObservableSource, converted to the specified
type.
- cast(Class<? extends U>) - Method in class io.reactivex.rxjava3.core.Single
-
Casts the success value of the current Single into the target type or signals a
ClassCastException if not compatible.
- CheckReturnValue - Annotation Type in io.reactivex.rxjava3.annotations
-
Marks methods whose return values should be checked.
- checkSubscriptionOnce - Variable in class io.reactivex.rxjava3.observers.BaseTestConsumer
-
- cleanupBuffer() - Method in class io.reactivex.rxjava3.processors.ReplayProcessor
-
Makes sure the item cached by the head node in a bounded
ReplayProcessor is released (as it is never part of a replay).
- cleanupBuffer() - Method in class io.reactivex.rxjava3.subjects.ReplaySubject
-
Makes sure the item cached by the head node in a bounded
ReplaySubject is released (as it is never part of a replay).
- clear() - Method in class io.reactivex.rxjava3.disposables.CompositeDisposable
-
Atomically clears the container, then disposes all the previously contained Disposables.
- clockDriftTolerance() - Static method in class io.reactivex.rxjava3.core.Scheduler
-
Returns the clock drift tolerance in nanoseconds.
- collect(Supplier<? extends U>, BiConsumer<? super U, ? super T>) - Method in class io.reactivex.rxjava3.core.Flowable
-
Collects items emitted by the finite source Publisher into a single mutable data structure and returns
a Single that emits this structure.
- collect(Supplier<? extends U>, BiConsumer<? super U, ? super T>) - Method in class io.reactivex.rxjava3.core.Observable
-
Collects items emitted by the finite source ObservableSource into a single mutable data structure and returns
a Single that emits this structure.
- collect(Supplier<? extends C>, BiConsumer<? super C, ? super T>) - Method in class io.reactivex.rxjava3.parallel.ParallelFlowable
-
Collect the elements in each rail into a collection supplied via a collectionSupplier
and collected into with a collector action, emitting the collection at the end.
- collectInto(U, BiConsumer<? super U, ? super T>) - Method in class io.reactivex.rxjava3.core.Flowable
-
Collects items emitted by the finite source Publisher into a single mutable data structure and returns
a Single that emits this structure.
- collectInto(U, BiConsumer<? super U, ? super T>) - Method in class io.reactivex.rxjava3.core.Observable
-
Collects items emitted by the finite source ObservableSource into a single mutable data structure and returns
a Single that emits this structure.
- combineLatest(Iterable<? extends Publisher<? extends T>>, Function<? super Object[], ? extends R>) - Static method in class io.reactivex.rxjava3.core.Flowable
-
Combines a collection of source Publishers by emitting an item that aggregates the latest values of each of
the source Publishers each time an item is received from any of the source Publishers, where this
aggregation is defined by a specified function.
- combineLatest(Iterable<? extends Publisher<? extends T>>, Function<? super Object[], ? extends R>, int) - Static method in class io.reactivex.rxjava3.core.Flowable
-
Combines a collection of source Publishers by emitting an item that aggregates the latest values of each of
the source Publishers each time an item is received from any of the source Publishers, where this
aggregation is defined by a specified function.
- combineLatest(Publisher<? extends T1>, Publisher<? extends T2>, BiFunction<? super T1, ? super T2, ? extends R>) - Static method in class io.reactivex.rxjava3.core.Flowable
-
Combines two source Publishers by emitting an item that aggregates the latest values of each of the
source Publishers each time an item is received from either of the source Publishers, where this
aggregation is defined by a specified function.
- combineLatest(Publisher<? extends T1>, Publisher<? extends T2>, Publisher<? extends T3>, Function3<? super T1, ? super T2, ? super T3, ? extends R>) - Static method in class io.reactivex.rxjava3.core.Flowable
-
Combines three source Publishers by emitting an item that aggregates the latest values of each of the
source Publishers each time an item is received from any of the source Publishers, where this
aggregation is defined by a specified function.
- combineLatest(Publisher<? extends T1>, Publisher<? extends T2>, Publisher<? extends T3>, Publisher<? extends T4>, Function4<? super T1, ? super T2, ? super T3, ? super T4, ? extends R>) - Static method in class io.reactivex.rxjava3.core.Flowable
-
Combines four source Publishers by emitting an item that aggregates the latest values of each of the
source Publishers each time an item is received from any of the source Publishers, where this
aggregation is defined by a specified function.
- combineLatest(Publisher<? extends T1>, Publisher<? extends T2>, Publisher<? extends T3>, Publisher<? extends T4>, Publisher<? extends T5>, Function5<? super T1, ? super T2, ? super T3, ? super T4, ? super T5, ? extends R>) - Static method in class io.reactivex.rxjava3.core.Flowable
-
Combines five source Publishers by emitting an item that aggregates the latest values of each of the
source Publishers each time an item is received from any of the source Publishers, where this
aggregation is defined by a specified function.
- combineLatest(Publisher<? extends T1>, Publisher<? extends T2>, Publisher<? extends T3>, Publisher<? extends T4>, Publisher<? extends T5>, Publisher<? extends T6>, Function6<? super T1, ? super T2, ? super T3, ? super T4, ? super T5, ? super T6, ? extends R>) - Static method in class io.reactivex.rxjava3.core.Flowable
-
Combines six source Publishers by emitting an item that aggregates the latest values of each of the
source Publishers each time an item is received from any of the source Publishers, where this
aggregation is defined by a specified function.
- combineLatest(Publisher<? extends T1>, Publisher<? extends T2>, Publisher<? extends T3>, Publisher<? extends T4>, Publisher<? extends T5>, Publisher<? extends T6>, Publisher<? extends T7>, Function7<? super T1, ? super T2, ? super T3, ? super T4, ? super T5, ? super T6, ? super T7, ? extends R>) - Static method in class io.reactivex.rxjava3.core.Flowable
-
Combines seven source Publishers by emitting an item that aggregates the latest values of each of the
source Publishers each time an item is received from any of the source Publishers, where this
aggregation is defined by a specified function.
- combineLatest(Publisher<? extends T1>, Publisher<? extends T2>, Publisher<? extends T3>, Publisher<? extends T4>, Publisher<? extends T5>, Publisher<? extends T6>, Publisher<? extends T7>, Publisher<? extends T8>, Function8<? super T1, ? super T2, ? super T3, ? super T4, ? super T5, ? super T6, ? super T7, ? super T8, ? extends R>) - Static method in class io.reactivex.rxjava3.core.Flowable
-
Combines eight source Publishers by emitting an item that aggregates the latest values of each of the
source Publishers each time an item is received from any of the source Publishers, where this
aggregation is defined by a specified function.
- combineLatest(Publisher<? extends T1>, Publisher<? extends T2>, Publisher<? extends T3>, Publisher<? extends T4>, Publisher<? extends T5>, Publisher<? extends T6>, Publisher<? extends T7>, Publisher<? extends T8>, Publisher<? extends T9>, Function9<? super T1, ? super T2, ? super T3, ? super T4, ? super T5, ? super T6, ? super T7, ? super T8, ? super T9, ? extends R>) - Static method in class io.reactivex.rxjava3.core.Flowable
-
Combines nine source Publishers by emitting an item that aggregates the latest values of each of the
source Publishers each time an item is received from any of the source Publishers, where this
aggregation is defined by a specified function.
- combineLatest(Iterable<? extends ObservableSource<? extends T>>, Function<? super Object[], ? extends R>) - Static method in class io.reactivex.rxjava3.core.Observable
-
Combines a collection of source ObservableSources by emitting an item that aggregates the latest values of each of
the source ObservableSources each time an item is received from any of the source ObservableSources, where this
aggregation is defined by a specified function.
- combineLatest(Iterable<? extends ObservableSource<? extends T>>, Function<? super Object[], ? extends R>, int) - Static method in class io.reactivex.rxjava3.core.Observable
-
Combines a collection of source ObservableSources by emitting an item that aggregates the latest values of each of
the source ObservableSources each time an item is received from any of the source ObservableSources, where this
aggregation is defined by a specified function.
- combineLatest(ObservableSource<? extends T1>, ObservableSource<? extends T2>, BiFunction<? super T1, ? super T2, ? extends R>) - Static method in class io.reactivex.rxjava3.core.Observable
-
Combines two source ObservableSources by emitting an item that aggregates the latest values of each of the
source ObservableSources each time an item is received from either of the source ObservableSources, where this
aggregation is defined by a specified function.
- combineLatest(ObservableSource<? extends T1>, ObservableSource<? extends T2>, ObservableSource<? extends T3>, Function3<? super T1, ? super T2, ? super T3, ? extends R>) - Static method in class io.reactivex.rxjava3.core.Observable
-
Combines three source ObservableSources by emitting an item that aggregates the latest values of each of the
source ObservableSources each time an item is received from any of the source ObservableSources, where this
aggregation is defined by a specified function.
- combineLatest(ObservableSource<? extends T1>, ObservableSource<? extends T2>, ObservableSource<? extends T3>, ObservableSource<? extends T4>, Function4<? super T1, ? super T2, ? super T3, ? super T4, ? extends R>) - Static method in class io.reactivex.rxjava3.core.Observable
-
Combines four source ObservableSources by emitting an item that aggregates the latest values of each of the
source ObservableSources each time an item is received from any of the source ObservableSources, where this
aggregation is defined by a specified function.
- combineLatest(ObservableSource<? extends T1>, ObservableSource<? extends T2>, ObservableSource<? extends T3>, ObservableSource<? extends T4>, ObservableSource<? extends T5>, Function5<? super T1, ? super T2, ? super T3, ? super T4, ? super T5, ? extends R>) - Static method in class io.reactivex.rxjava3.core.Observable
-
Combines five source ObservableSources by emitting an item that aggregates the latest values of each of the
source ObservableSources each time an item is received from any of the source ObservableSources, where this
aggregation is defined by a specified function.
- combineLatest(ObservableSource<? extends T1>, ObservableSource<? extends T2>, ObservableSource<? extends T3>, ObservableSource<? extends T4>, ObservableSource<? extends T5>, ObservableSource<? extends T6>, Function6<? super T1, ? super T2, ? super T3, ? super T4, ? super T5, ? super T6, ? extends R>) - Static method in class io.reactivex.rxjava3.core.Observable
-
Combines six source ObservableSources by emitting an item that aggregates the latest values of each of the
source ObservableSources each time an item is received from any of the source ObservableSources, where this
aggregation is defined by a specified function.
- combineLatest(ObservableSource<? extends T1>, ObservableSource<? extends T2>, ObservableSource<? extends T3>, ObservableSource<? extends T4>, ObservableSource<? extends T5>, ObservableSource<? extends T6>, ObservableSource<? extends T7>, Function7<? super T1, ? super T2, ? super T3, ? super T4, ? super T5, ? super T6, ? super T7, ? extends R>) - Static method in class io.reactivex.rxjava3.core.Observable
-
Combines seven source ObservableSources by emitting an item that aggregates the latest values of each of the
source ObservableSources each time an item is received from any of the source ObservableSources, where this
aggregation is defined by a specified function.
- combineLatest(ObservableSource<? extends T1>, ObservableSource<? extends T2>, ObservableSource<? extends T3>, ObservableSource<? extends T4>, ObservableSource<? extends T5>, ObservableSource<? extends T6>, ObservableSource<? extends T7>, ObservableSource<? extends T8>, Function8<? super T1, ? super T2, ? super T3, ? super T4, ? super T5, ? super T6, ? super T7, ? super T8, ? extends R>) - Static method in class io.reactivex.rxjava3.core.Observable
-
Combines eight source ObservableSources by emitting an item that aggregates the latest values of each of the
source ObservableSources each time an item is received from any of the source ObservableSources, where this
aggregation is defined by a specified function.
- combineLatest(ObservableSource<? extends T1>, ObservableSource<? extends T2>, ObservableSource<? extends T3>, ObservableSource<? extends T4>, ObservableSource<? extends T5>, ObservableSource<? extends T6>, ObservableSource<? extends T7>, ObservableSource<? extends T8>, ObservableSource<? extends T9>, Function9<? super T1, ? super T2, ? super T3, ? super T4, ? super T5, ? super T6, ? super T7, ? super T8, ? super T9, ? extends R>) - Static method in class io.reactivex.rxjava3.core.Observable
-
Combines nine source ObservableSources by emitting an item that aggregates the latest values of each of the
source ObservableSources each time an item is received from any of the source ObservableSources, where this
aggregation is defined by a specified function.
- combineLatestArray(Publisher<? extends T>[], Function<? super Object[], ? extends R>) - Static method in class io.reactivex.rxjava3.core.Flowable
-
Combines a collection of source Publishers by emitting an item that aggregates the latest values of each of
the source Publishers each time an item is received from any of the source Publishers, where this
aggregation is defined by a specified function.
- combineLatestArray(Publisher<? extends T>[], Function<? super Object[], ? extends R>, int) - Static method in class io.reactivex.rxjava3.core.Flowable
-
Combines a collection of source Publishers by emitting an item that aggregates the latest values of each of
the source Publishers each time an item is received from any of the source Publishers, where this
aggregation is defined by a specified function.
- combineLatestArray(ObservableSource<? extends T>[], Function<? super Object[], ? extends R>) - Static method in class io.reactivex.rxjava3.core.Observable
-
Combines a collection of source ObservableSources by emitting an item that aggregates the latest values of each of
the source ObservableSources each time an item is received from any of the source ObservableSources, where this
aggregation is defined by a specified function.
- combineLatestArray(ObservableSource<? extends T>[], Function<? super Object[], ? extends R>, int) - Static method in class io.reactivex.rxjava3.core.Observable
-
Combines a collection of source ObservableSources by emitting an item that aggregates the latest values of each of
the source ObservableSources each time an item is received from any of the source ObservableSources, where this
aggregation is defined by a specified function.
- combineLatestDelayError(Publisher<? extends T>[], Function<? super Object[], ? extends R>) - Static method in class io.reactivex.rxjava3.core.Flowable
-
Combines a collection of source Publishers by emitting an item that aggregates the latest values of each of
the source Publishers each time an item is received from any of the source Publishers, where this
aggregation is defined by a specified function.
- combineLatestDelayError(Publisher<? extends T>[], Function<? super Object[], ? extends R>, int) - Static method in class io.reactivex.rxjava3.core.Flowable
-
Combines a collection of source Publishers by emitting an item that aggregates the latest values of each of
the source Publishers each time an item is received from any of the source Publishers, where this
aggregation is defined by a specified function and delays any error from the sources until
all source Publishers terminate.
- combineLatestDelayError(Iterable<? extends Publisher<? extends T>>, Function<? super Object[], ? extends R>) - Static method in class io.reactivex.rxjava3.core.Flowable
-
Combines a collection of source Publishers by emitting an item that aggregates the latest values of each of
the source Publishers each time an item is received from any of the source Publishers, where this
aggregation is defined by a specified function and delays any error from the sources until
all source Publishers terminate.
- combineLatestDelayError(Iterable<? extends Publisher<? extends T>>, Function<? super Object[], ? extends R>, int) - Static method in class io.reactivex.rxjava3.core.Flowable
-
Combines a collection of source Publishers by emitting an item that aggregates the latest values of each of
the source Publishers each time an item is received from any of the source Publishers, where this
aggregation is defined by a specified function and delays any error from the sources until
all source Publishers terminate.
- combineLatestDelayError(ObservableSource<? extends T>[], Function<? super Object[], ? extends R>) - Static method in class io.reactivex.rxjava3.core.Observable
-
Combines a collection of source ObservableSources by emitting an item that aggregates the latest values of each of
the source ObservableSources each time an item is received from any of the source ObservableSources, where this
aggregation is defined by a specified function.
- combineLatestDelayError(ObservableSource<? extends T>[], Function<? super Object[], ? extends R>, int) - Static method in class io.reactivex.rxjava3.core.Observable
-
Combines a collection of source ObservableSources by emitting an item that aggregates the latest values of each of
the source ObservableSources each time an item is received from any of the source ObservableSources, where this
aggregation is defined by a specified function and delays any error from the sources until
all source ObservableSources terminate.
- combineLatestDelayError(Iterable<? extends ObservableSource<? extends T>>, Function<? super Object[], ? extends R>) - Static method in class io.reactivex.rxjava3.core.Observable
-
Combines a collection of source ObservableSources by emitting an item that aggregates the latest values of each of
the source ObservableSources each time an item is received from any of the source ObservableSources, where this
aggregation is defined by a specified function and delays any error from the sources until
all source ObservableSources terminate.
- combineLatestDelayError(Iterable<? extends ObservableSource<? extends T>>, Function<? super Object[], ? extends R>, int) - Static method in class io.reactivex.rxjava3.core.Observable
-
Combines a collection of source ObservableSources by emitting an item that aggregates the latest values of each of
the source ObservableSources each time an item is received from any of the source ObservableSources, where this
aggregation is defined by a specified function and delays any error from the sources until
all source ObservableSources terminate.
- Completable - Class in io.reactivex.rxjava3.core
-
The Completable
class represents a deferred computation without any value but
only indication for completion or exception.
- Completable() - Constructor for class io.reactivex.rxjava3.core.Completable
-
- CompletableConverter<R> - Interface in io.reactivex.rxjava3.core
-
- CompletableEmitter - Interface in io.reactivex.rxjava3.core
-
- CompletableObserver - Interface in io.reactivex.rxjava3.core
-
Provides a mechanism for receiving push-based notification of a valueless completion or an error.
- CompletableOnSubscribe - Interface in io.reactivex.rxjava3.core
-
A functional interface that has a
subscribe()
method that receives
an instance of a
CompletableEmitter
instance that allows pushing
an event in a cancellation-safe manner.
- CompletableOperator - Interface in io.reactivex.rxjava3.core
-
Interface to map/wrap a downstream observer to an upstream observer.
- CompletableSource - Interface in io.reactivex.rxjava3.core
-
- CompletableSubject - Class in io.reactivex.rxjava3.subjects
-
Represents a hot Completable-like source and consumer of events similar to Subjects.
- CompletableTransformer - Interface in io.reactivex.rxjava3.core
-
Convenience interface and callback used by the compose operator to turn a Completable into another
Completable fluently.
- complete() - Static method in class io.reactivex.rxjava3.core.Completable
-
Returns a Completable instance that completes immediately when subscribed to.
- completions - Variable in class io.reactivex.rxjava3.observers.BaseTestConsumer
-
The number of completions.
- compose(CompletableTransformer) - Method in class io.reactivex.rxjava3.core.Completable
-
Calls the given transformer function with this instance and returns the function's resulting
Completable.
- compose(FlowableTransformer<? super T, ? extends R>) - Method in class io.reactivex.rxjava3.core.Flowable
-
Transform a Publisher by applying a particular Transformer function to it.
- compose(MaybeTransformer<? super T, ? extends R>) - Method in class io.reactivex.rxjava3.core.Maybe
-
Transform a Maybe by applying a particular Transformer function to it.
- compose(ObservableTransformer<? super T, ? extends R>) - Method in class io.reactivex.rxjava3.core.Observable
-
Transform an ObservableSource by applying a particular Transformer function to it.
- compose(SingleTransformer<? super T, ? extends R>) - Method in class io.reactivex.rxjava3.core.Single
-
Transform a Single by applying a particular Transformer function to it.
- compose(ParallelTransformer<T, U>) - Method in class io.reactivex.rxjava3.parallel.ParallelFlowable
-
Allows composing operators, in assembly time, on top of this ParallelFlowable
and returns another ParallelFlowable with composed features.
- CompositeDisposable - Class in io.reactivex.rxjava3.disposables
-
A disposable container that can hold onto multiple other disposables and
offers O(1) add and removal complexity.
- CompositeDisposable() - Constructor for class io.reactivex.rxjava3.disposables.CompositeDisposable
-
Creates an empty CompositeDisposable.
- CompositeDisposable(Disposable...) - Constructor for class io.reactivex.rxjava3.disposables.CompositeDisposable
-
Creates a CompositeDisposables with the given array of initial elements.
- CompositeDisposable(Iterable<? extends Disposable>) - Constructor for class io.reactivex.rxjava3.disposables.CompositeDisposable
-
Creates a CompositeDisposables with the given Iterable sequence of initial elements.
- CompositeException - Exception in io.reactivex.rxjava3.exceptions
-
Represents an exception that is a composite of one or more other exceptions.
- CompositeException(Throwable...) - Constructor for exception io.reactivex.rxjava3.exceptions.CompositeException
-
Constructs a CompositeException with the given array of Throwables as the
list of suppressed exceptions.
- CompositeException(Iterable<? extends Throwable>) - Constructor for exception io.reactivex.rxjava3.exceptions.CompositeException
-
Constructs a CompositeException with the given array of Throwables as the
list of suppressed exceptions.
- COMPUTATION - Static variable in annotation type io.reactivex.rxjava3.annotations.SchedulerSupport
-
- computation() - Static method in class io.reactivex.rxjava3.schedulers.Schedulers
-
Returns a default, shared
Scheduler
instance intended for computational work.
- concat(Iterable<? extends CompletableSource>) - Static method in class io.reactivex.rxjava3.core.Completable
-
Returns a Completable which completes only when all sources complete, one after another.
- concat(Publisher<? extends CompletableSource>) - Static method in class io.reactivex.rxjava3.core.Completable
-
Returns a Completable which completes only when all sources complete, one after another.
- concat(Publisher<? extends CompletableSource>, int) - Static method in class io.reactivex.rxjava3.core.Completable
-
Returns a Completable which completes only when all sources complete, one after another.
- concat(Iterable<? extends Publisher<? extends T>>) - Static method in class io.reactivex.rxjava3.core.Flowable
-
Concatenates elements of each Publisher provided via an Iterable sequence into a single sequence
of elements without interleaving them.
- concat(Publisher<? extends Publisher<? extends T>>) - Static method in class io.reactivex.rxjava3.core.Flowable
-
Returns a Flowable that emits the items emitted by each of the Publishers emitted by the source
Publisher, one after the other, without interleaving them.
- concat(Publisher<? extends Publisher<? extends T>>, int) - Static method in class io.reactivex.rxjava3.core.Flowable
-
Returns a Flowable that emits the items emitted by each of the Publishers emitted by the source
Publisher, one after the other, without interleaving them.
- concat(Publisher<? extends T>, Publisher<? extends T>) - Static method in class io.reactivex.rxjava3.core.Flowable
-
Returns a Flowable that emits the items emitted by two Publishers, one after the other, without
interleaving them.
- concat(Publisher<? extends T>, Publisher<? extends T>, Publisher<? extends T>) - Static method in class io.reactivex.rxjava3.core.Flowable
-
Returns a Flowable that emits the items emitted by three Publishers, one after the other, without
interleaving them.
- concat(Publisher<? extends T>, Publisher<? extends T>, Publisher<? extends T>, Publisher<? extends T>) - Static method in class io.reactivex.rxjava3.core.Flowable
-
Returns a Flowable that emits the items emitted by four Publishers, one after the other, without
interleaving them.
- concat(Iterable<? extends MaybeSource<? extends T>>) - Static method in class io.reactivex.rxjava3.core.Maybe
-
Concatenate the single values, in a non-overlapping fashion, of the MaybeSource sources provided by
an Iterable sequence.
- concat(MaybeSource<? extends T>, MaybeSource<? extends T>) - Static method in class io.reactivex.rxjava3.core.Maybe
-
Returns a Flowable that emits the items emitted by two MaybeSources, one after the other.
- concat(MaybeSource<? extends T>, MaybeSource<? extends T>, MaybeSource<? extends T>) - Static method in class io.reactivex.rxjava3.core.Maybe
-
Returns a Flowable that emits the items emitted by three MaybeSources, one after the other.
- concat(MaybeSource<? extends T>, MaybeSource<? extends T>, MaybeSource<? extends T>, MaybeSource<? extends T>) - Static method in class io.reactivex.rxjava3.core.Maybe
-
Returns a Flowable that emits the items emitted by four MaybeSources, one after the other.
- concat(Publisher<? extends MaybeSource<? extends T>>) - Static method in class io.reactivex.rxjava3.core.Maybe
-
Concatenate the single values, in a non-overlapping fashion, of the MaybeSource sources provided by
a Publisher sequence.
- concat(Publisher<? extends MaybeSource<? extends T>>, int) - Static method in class io.reactivex.rxjava3.core.Maybe
-
Concatenate the single values, in a non-overlapping fashion, of the MaybeSource sources provided by
a Publisher sequence.
- concat(Iterable<? extends ObservableSource<? extends T>>) - Static method in class io.reactivex.rxjava3.core.Observable
-
Concatenates elements of each ObservableSource provided via an Iterable sequence into a single sequence
of elements without interleaving them.
- concat(ObservableSource<? extends ObservableSource<? extends T>>) - Static method in class io.reactivex.rxjava3.core.Observable
-
Returns an Observable that emits the items emitted by each of the ObservableSources emitted by the source
ObservableSource, one after the other, without interleaving them.
- concat(ObservableSource<? extends ObservableSource<? extends T>>, int) - Static method in class io.reactivex.rxjava3.core.Observable
-
Returns an Observable that emits the items emitted by each of the ObservableSources emitted by the source
ObservableSource, one after the other, without interleaving them.
- concat(ObservableSource<? extends T>, ObservableSource<? extends T>) - Static method in class io.reactivex.rxjava3.core.Observable
-
Returns an Observable that emits the items emitted by two ObservableSources, one after the other, without
interleaving them.
- concat(ObservableSource<? extends T>, ObservableSource<? extends T>, ObservableSource<? extends T>) - Static method in class io.reactivex.rxjava3.core.Observable
-
Returns an Observable that emits the items emitted by three ObservableSources, one after the other, without
interleaving them.
- concat(ObservableSource<? extends T>, ObservableSource<? extends T>, ObservableSource<? extends T>, ObservableSource<? extends T>) - Static method in class io.reactivex.rxjava3.core.Observable
-
Returns an Observable that emits the items emitted by four ObservableSources, one after the other, without
interleaving them.
- concat(Iterable<? extends SingleSource<? extends T>>) - Static method in class io.reactivex.rxjava3.core.Single
-
Concatenate the single values, in a non-overlapping fashion, of the SingleSources provided by
an Iterable sequence.
- concat(ObservableSource<? extends SingleSource<? extends T>>) - Static method in class io.reactivex.rxjava3.core.Single
-
Concatenate the single values, in a non-overlapping fashion, of the SingleSources provided by
an Observable sequence.
- concat(Publisher<? extends SingleSource<? extends T>>) - Static method in class io.reactivex.rxjava3.core.Single
-
Concatenate the single values, in a non-overlapping fashion, of the SingleSources provided by
a Publisher sequence.
- concat(Publisher<? extends SingleSource<? extends T>>, int) - Static method in class io.reactivex.rxjava3.core.Single
-
Concatenate the single values, in a non-overlapping fashion, of the SingleSources provided by
a Publisher sequence and prefetched by the specified amount.
- concat(SingleSource<? extends T>, SingleSource<? extends T>) - Static method in class io.reactivex.rxjava3.core.Single
-
Returns a Flowable that emits the items emitted by two Singles, one after the other.
- concat(SingleSource<? extends T>, SingleSource<? extends T>, SingleSource<? extends T>) - Static method in class io.reactivex.rxjava3.core.Single
-
Returns a Flowable that emits the items emitted by three Singles, one after the other.
- concat(SingleSource<? extends T>, SingleSource<? extends T>, SingleSource<? extends T>, SingleSource<? extends T>) - Static method in class io.reactivex.rxjava3.core.Single
-
Returns a Flowable that emits the items emitted by four Singles, one after the other.
- concatArray(CompletableSource...) - Static method in class io.reactivex.rxjava3.core.Completable
-
Returns a Completable which completes only when all sources complete, one after another.
- concatArray(Publisher<? extends T>...) - Static method in class io.reactivex.rxjava3.core.Flowable
-
Concatenates a variable number of Publisher sources.
- concatArray(MaybeSource<? extends T>...) - Static method in class io.reactivex.rxjava3.core.Maybe
-
Concatenate the single values, in a non-overlapping fashion, of the MaybeSource sources in the array.
- concatArray(ObservableSource<? extends T>...) - Static method in class io.reactivex.rxjava3.core.Observable
-
Concatenates a variable number of ObservableSource sources.
- concatArray(SingleSource<? extends T>...) - Static method in class io.reactivex.rxjava3.core.Single
-
Concatenate the single values, in a non-overlapping fashion, of the SingleSources provided in
an array.
- concatArrayDelayError(Publisher<? extends T>...) - Static method in class io.reactivex.rxjava3.core.Flowable
-
Concatenates a variable number of Publisher sources and delays errors from any of them
till all terminate.
- concatArrayDelayError(MaybeSource<? extends T>...) - Static method in class io.reactivex.rxjava3.core.Maybe
-
Concatenates a variable number of MaybeSource sources and delays errors from any of them
till all terminate.
- concatArrayDelayError(ObservableSource<? extends T>...) - Static method in class io.reactivex.rxjava3.core.Observable
-
Concatenates a variable number of ObservableSource sources and delays errors from any of them
till all terminate.
- concatArrayEager(Publisher<? extends T>...) - Static method in class io.reactivex.rxjava3.core.Flowable
-
Concatenates an array of Publishers eagerly into a single stream of values.
- concatArrayEager(int, int, Publisher<? extends T>...) - Static method in class io.reactivex.rxjava3.core.Flowable
-
Concatenates an array of Publishers eagerly into a single stream of values.
- concatArrayEager(MaybeSource<? extends T>...) - Static method in class io.reactivex.rxjava3.core.Maybe
-
Concatenates a sequence of MaybeSource eagerly into a single stream of values.
- concatArrayEager(ObservableSource<? extends T>...) - Static method in class io.reactivex.rxjava3.core.Observable
-
Concatenates an array of ObservableSources eagerly into a single stream of values.
- concatArrayEager(int, int, ObservableSource<? extends T>...) - Static method in class io.reactivex.rxjava3.core.Observable
-
Concatenates an array of ObservableSources eagerly into a single stream of values.
- concatArrayEager(SingleSource<? extends T>...) - Static method in class io.reactivex.rxjava3.core.Single
-
Concatenates a sequence of SingleSource eagerly into a single stream of values.
- concatArrayEagerDelayError(Publisher<? extends T>...) - Static method in class io.reactivex.rxjava3.core.Flowable
-
Concatenates an array of
Publisher
s eagerly into a single stream of values
and delaying any errors until all sources terminate.
- concatArrayEagerDelayError(int, int, Publisher<? extends T>...) - Static method in class io.reactivex.rxjava3.core.Flowable
-
Concatenates an array of
Publisher
s eagerly into a single stream of values
and delaying any errors until all sources terminate.
- concatArrayEagerDelayError(ObservableSource<? extends T>...) - Static method in class io.reactivex.rxjava3.core.Observable
-
Concatenates an array of
ObservableSource
s eagerly into a single stream of values
and delaying any errors until all sources terminate.
- concatArrayEagerDelayError(int, int, ObservableSource<? extends T>...) - Static method in class io.reactivex.rxjava3.core.Observable
-
Concatenates an array of
ObservableSource
s eagerly into a single stream of values
and delaying any errors until all sources terminate.
- concatDelayError(Iterable<? extends Publisher<? extends T>>) - Static method in class io.reactivex.rxjava3.core.Flowable
-
Concatenates the Iterable sequence of Publishers into a single sequence by subscribing to each Publisher,
one after the other, one at a time and delays any errors till the all inner Publishers terminate.
- concatDelayError(Publisher<? extends Publisher<? extends T>>) - Static method in class io.reactivex.rxjava3.core.Flowable
-
Concatenates the Publisher sequence of Publishers into a single sequence by subscribing to each inner Publisher,
one after the other, one at a time and delays any errors till the all inner and the outer Publishers terminate.
- concatDelayError(Publisher<? extends Publisher<? extends T>>, int, boolean) - Static method in class io.reactivex.rxjava3.core.Flowable
-
Concatenates the Publisher sequence of Publishers into a single sequence by subscribing to each inner Publisher,
one after the other, one at a time and delays any errors till the all inner and the outer Publishers terminate.
- concatDelayError(Iterable<? extends MaybeSource<? extends T>>) - Static method in class io.reactivex.rxjava3.core.Maybe
-
Concatenates the Iterable sequence of MaybeSources into a single sequence by subscribing to each MaybeSource,
one after the other, one at a time and delays any errors till the all inner MaybeSources terminate.
- concatDelayError(Publisher<? extends MaybeSource<? extends T>>) - Static method in class io.reactivex.rxjava3.core.Maybe
-
Concatenates the Publisher sequence of Publishers into a single sequence by subscribing to each inner Publisher,
one after the other, one at a time and delays any errors till the all inner and the outer Publishers terminate.
- concatDelayError(Iterable<? extends ObservableSource<? extends T>>) - Static method in class io.reactivex.rxjava3.core.Observable
-
Concatenates the Iterable sequence of ObservableSources into a single sequence by subscribing to each ObservableSource,
one after the other, one at a time and delays any errors till the all inner ObservableSources terminate.
- concatDelayError(ObservableSource<? extends ObservableSource<? extends T>>) - Static method in class io.reactivex.rxjava3.core.Observable
-
Concatenates the ObservableSource sequence of ObservableSources into a single sequence by subscribing to each inner ObservableSource,
one after the other, one at a time and delays any errors till the all inner and the outer ObservableSources terminate.
- concatDelayError(ObservableSource<? extends ObservableSource<? extends T>>, int, boolean) - Static method in class io.reactivex.rxjava3.core.Observable
-
Concatenates the ObservableSource sequence of ObservableSources into a single sequence by subscribing to each inner ObservableSource,
one after the other, one at a time and delays any errors till the all inner and the outer ObservableSources terminate.
- concatEager(Publisher<? extends Publisher<? extends T>>) - Static method in class io.reactivex.rxjava3.core.Flowable
-
Concatenates a Publisher sequence of Publishers eagerly into a single stream of values.
- concatEager(Publisher<? extends Publisher<? extends T>>, int, int) - Static method in class io.reactivex.rxjava3.core.Flowable
-
Concatenates a Publisher sequence of Publishers eagerly into a single stream of values.
- concatEager(Iterable<? extends Publisher<? extends T>>) - Static method in class io.reactivex.rxjava3.core.Flowable
-
Concatenates a sequence of Publishers eagerly into a single stream of values.
- concatEager(Iterable<? extends Publisher<? extends T>>, int, int) - Static method in class io.reactivex.rxjava3.core.Flowable
-
Concatenates a sequence of Publishers eagerly into a single stream of values.
- concatEager(Iterable<? extends MaybeSource<? extends T>>) - Static method in class io.reactivex.rxjava3.core.Maybe
-
Concatenates a sequence of MaybeSources eagerly into a single stream of values.
- concatEager(Publisher<? extends MaybeSource<? extends T>>) - Static method in class io.reactivex.rxjava3.core.Maybe
-
Concatenates a Publisher sequence of MaybeSources eagerly into a single stream of values.
- concatEager(ObservableSource<? extends ObservableSource<? extends T>>) - Static method in class io.reactivex.rxjava3.core.Observable
-
Concatenates an ObservableSource sequence of ObservableSources eagerly into a single stream of values.
- concatEager(ObservableSource<? extends ObservableSource<? extends T>>, int, int) - Static method in class io.reactivex.rxjava3.core.Observable
-
Concatenates an ObservableSource sequence of ObservableSources eagerly into a single stream of values.
- concatEager(Iterable<? extends ObservableSource<? extends T>>) - Static method in class io.reactivex.rxjava3.core.Observable
-
Concatenates a sequence of ObservableSources eagerly into a single stream of values.
- concatEager(Iterable<? extends ObservableSource<? extends T>>, int, int) - Static method in class io.reactivex.rxjava3.core.Observable
-
Concatenates a sequence of ObservableSources eagerly into a single stream of values.
- concatEager(Publisher<? extends SingleSource<? extends T>>) - Static method in class io.reactivex.rxjava3.core.Single
-
Concatenates a Publisher sequence of SingleSources eagerly into a single stream of values.
- concatEager(Iterable<? extends SingleSource<? extends T>>) - Static method in class io.reactivex.rxjava3.core.Single
-
Concatenates a sequence of SingleSources eagerly into a single stream of values.
- concatMap(Function<? super T, ? extends Publisher<? extends R>>) - Method in class io.reactivex.rxjava3.core.Flowable
-
Returns a new Flowable that emits items resulting from applying a function that you supply to each item
emitted by the source Publisher, where that function returns a Publisher, and then emitting the items
that result from concatenating those resulting Publishers.
- concatMap(Function<? super T, ? extends Publisher<? extends R>>, int) - Method in class io.reactivex.rxjava3.core.Flowable
-
Returns a new Flowable that emits items resulting from applying a function that you supply to each item
emitted by the source Publisher, where that function returns a Publisher, and then emitting the items
that result from concatenating those resulting Publishers.
- concatMap(Function<? super T, ? extends Publisher<? extends R>>, int, Scheduler) - Method in class io.reactivex.rxjava3.core.Flowable
-
Returns a new Flowable that emits items resulting from applying a function (on a designated scheduler)
that you supply to each item emitted by the source Publisher, where that function returns a Publisher, and then emitting the items
that result from concatenating those resulting Publishers.
- concatMap(Function<? super T, ? extends MaybeSource<? extends R>>) - Method in class io.reactivex.rxjava3.core.Maybe
-
Returns a Maybe that is based on applying a specified function to the item emitted by the source Maybe,
where that function returns a MaybeSource.
- concatMap(Function<? super T, ? extends ObservableSource<? extends R>>) - Method in class io.reactivex.rxjava3.core.Observable
-
Returns a new Observable that emits items resulting from applying a function that you supply to each item
emitted by the source ObservableSource, where that function returns an ObservableSource, and then emitting the items
that result from concatenating those resulting ObservableSources.
- concatMap(Function<? super T, ? extends ObservableSource<? extends R>>, int) - Method in class io.reactivex.rxjava3.core.Observable
-
Returns a new Observable that emits items resulting from applying a function that you supply to each item
emitted by the source ObservableSource, where that function returns an ObservableSource, and then emitting the items
that result from concatenating those resulting ObservableSources.
- concatMap(Function<? super T, ? extends ObservableSource<? extends R>>, int, Scheduler) - Method in class io.reactivex.rxjava3.core.Observable
-
Returns a new Observable that emits items resulting from applying a function that you supply to each item
emitted by the source ObservableSource, where that function returns an ObservableSource, and then emitting the items
that result from concatenating those resulting ObservableSources.
- concatMap(Function<? super T, ? extends Publisher<? extends R>>) - Method in class io.reactivex.rxjava3.parallel.ParallelFlowable
-
Generates and concatenates Publishers on each 'rail', signalling errors immediately
and generating 2 publishers upfront.
- concatMap(Function<? super T, ? extends Publisher<? extends R>>, int) - Method in class io.reactivex.rxjava3.parallel.ParallelFlowable
-
Generates and concatenates Publishers on each 'rail', signalling errors immediately
and using the given prefetch amount for generating Publishers upfront.
- concatMapCompletable(Function<? super T, ? extends CompletableSource>) - Method in class io.reactivex.rxjava3.core.Flowable
-
Maps the upstream items into
CompletableSource
s and subscribes to them one after the
other completes.
- concatMapCompletable(Function<? super T, ? extends CompletableSource>, int) - Method in class io.reactivex.rxjava3.core.Flowable
-
Maps the upstream items into
CompletableSource
s and subscribes to them one after the
other completes.
- concatMapCompletable(Function<? super T, ? extends CompletableSource>) - Method in class io.reactivex.rxjava3.core.Observable
-
Maps each element of the upstream Observable into CompletableSources, subscribes to them one at a time in
order and waits until the upstream and all CompletableSources complete.
- concatMapCompletable(Function<? super T, ? extends CompletableSource>, int) - Method in class io.reactivex.rxjava3.core.Observable
-
Maps each element of the upstream Observable into CompletableSources, subscribes to them one at a time in
order and waits until the upstream and all CompletableSources complete.
- concatMapCompletableDelayError(Function<? super T, ? extends CompletableSource>) - Method in class io.reactivex.rxjava3.core.Flowable
-
Maps the upstream items into
CompletableSource
s and subscribes to them one after the
other terminates, delaying all errors till both this
Flowable
and all
inner
CompletableSource
s terminate.
- concatMapCompletableDelayError(Function<? super T, ? extends CompletableSource>, boolean) - Method in class io.reactivex.rxjava3.core.Flowable
-
Maps the upstream items into
CompletableSource
s and subscribes to them one after the
other terminates, optionally delaying all errors till both this
Flowable
and all
inner
CompletableSource
s terminate.
- concatMapCompletableDelayError(Function<? super T, ? extends CompletableSource>, boolean, int) - Method in class io.reactivex.rxjava3.core.Flowable
-
Maps the upstream items into
CompletableSource
s and subscribes to them one after the
other terminates, optionally delaying all errors till both this
Flowable
and all
inner
CompletableSource
s terminate.
- concatMapCompletableDelayError(Function<? super T, ? extends CompletableSource>) - Method in class io.reactivex.rxjava3.core.Observable
-
Maps the upstream items into
CompletableSource
s and subscribes to them one after the
other terminates, delaying all errors till both this
Observable
and all
inner
CompletableSource
s terminate.
- concatMapCompletableDelayError(Function<? super T, ? extends CompletableSource>, boolean) - Method in class io.reactivex.rxjava3.core.Observable
-
Maps the upstream items into
CompletableSource
s and subscribes to them one after the
other terminates, optionally delaying all errors till both this
Observable
and all
inner
CompletableSource
s terminate.
- concatMapCompletableDelayError(Function<? super T, ? extends CompletableSource>, boolean, int) - Method in class io.reactivex.rxjava3.core.Observable
-
Maps the upstream items into
CompletableSource
s and subscribes to them one after the
other terminates, optionally delaying all errors till both this
Observable
and all
inner
CompletableSource
s terminate.
- concatMapDelayError(Function<? super T, ? extends Publisher<? extends R>>) - Method in class io.reactivex.rxjava3.core.Flowable
-
Maps each of the items into a Publisher, subscribes to them one after the other,
one at a time and emits their values in order
while delaying any error from either this or any of the inner Publishers
till all of them terminate.
- concatMapDelayError(Function<? super T, ? extends Publisher<? extends R>>, boolean, int) - Method in class io.reactivex.rxjava3.core.Flowable
-
Maps each of the items into a Publisher, subscribes to them one after the other,
one at a time and emits their values in order
while delaying any error from either this or any of the inner Publishers
till all of them terminate.
- concatMapDelayError(Function<? super T, ? extends Publisher<? extends R>>, boolean, int, Scheduler) - Method in class io.reactivex.rxjava3.core.Flowable
-
Maps each of the upstream items into a Publisher, subscribes to them one after the other,
one at a time and emits their values in order
while executing the mapper function on the designated scheduler, delaying any error from either this or any of the
inner Publishers till all of them terminate.
- concatMapDelayError(Function<? super T, ? extends ObservableSource<? extends R>>) - Method in class io.reactivex.rxjava3.core.Observable
-
Maps each of the items into an ObservableSource, subscribes to them one after the other,
one at a time and emits their values in order
while delaying any error from either this or any of the inner ObservableSources
till all of them terminate.
- concatMapDelayError(Function<? super T, ? extends ObservableSource<? extends R>>, boolean, int) - Method in class io.reactivex.rxjava3.core.Observable
-
Maps each of the items into an ObservableSource, subscribes to them one after the other,
one at a time and emits their values in order
while delaying any error from either this or any of the inner ObservableSources
till all of them terminate.
- concatMapDelayError(Function<? super T, ? extends ObservableSource<? extends R>>, boolean, int, Scheduler) - Method in class io.reactivex.rxjava3.core.Observable
-
Maps each of the items into an ObservableSource, subscribes to them one after the other,
one at a time and emits their values in order
while delaying any error from either this or any of the inner ObservableSources
till all of them terminate.
- concatMapDelayError(Function<? super T, ? extends Publisher<? extends R>>, boolean) - Method in class io.reactivex.rxjava3.parallel.ParallelFlowable
-
Generates and concatenates Publishers on each 'rail', optionally delaying errors
and generating 2 publishers upfront.
- concatMapDelayError(Function<? super T, ? extends Publisher<? extends R>>, int, boolean) - Method in class io.reactivex.rxjava3.parallel.ParallelFlowable
-
Generates and concatenates Publishers on each 'rail', optionally delaying errors
and using the given prefetch amount for generating Publishers upfront.
- concatMapEager(Function<? super T, ? extends Publisher<? extends R>>) - Method in class io.reactivex.rxjava3.core.Flowable
-
Maps a sequence of values into Publishers and concatenates these Publishers eagerly into a single
Publisher.
- concatMapEager(Function<? super T, ? extends Publisher<? extends R>>, int, int) - Method in class io.reactivex.rxjava3.core.Flowable
-
Maps a sequence of values into Publishers and concatenates these Publishers eagerly into a single
Publisher.
- concatMapEager(Function<? super T, ? extends ObservableSource<? extends R>>) - Method in class io.reactivex.rxjava3.core.Observable
-
Maps a sequence of values into ObservableSources and concatenates these ObservableSources eagerly into a single
ObservableSource.
- concatMapEager(Function<? super T, ? extends ObservableSource<? extends R>>, int, int) - Method in class io.reactivex.rxjava3.core.Observable
-
Maps a sequence of values into ObservableSources and concatenates these ObservableSources eagerly into a single
ObservableSource.
- concatMapEagerDelayError(Function<? super T, ? extends Publisher<? extends R>>, boolean) - Method in class io.reactivex.rxjava3.core.Flowable
-
Maps a sequence of values into Publishers and concatenates these Publishers eagerly into a single
Publisher.
- concatMapEagerDelayError(Function<? super T, ? extends Publisher<? extends R>>, boolean, int, int) - Method in class io.reactivex.rxjava3.core.Flowable
-
Maps a sequence of values into Publishers and concatenates these Publishers eagerly into a single
Publisher.
- concatMapEagerDelayError(Function<? super T, ? extends ObservableSource<? extends R>>, boolean) - Method in class io.reactivex.rxjava3.core.Observable
-
Maps a sequence of values into ObservableSources and concatenates these ObservableSources eagerly into a single
ObservableSource.
- concatMapEagerDelayError(Function<? super T, ? extends ObservableSource<? extends R>>, boolean, int, int) - Method in class io.reactivex.rxjava3.core.Observable
-
Maps a sequence of values into ObservableSources and concatenates these ObservableSources eagerly into a single
ObservableSource.
- concatMapIterable(Function<? super T, ? extends Iterable<? extends U>>) - Method in class io.reactivex.rxjava3.core.Flowable
-
Returns a Flowable that concatenate each item emitted by the source Publisher with the values in an
Iterable corresponding to that item that is generated by a selector.
- concatMapIterable(Function<? super T, ? extends Iterable<? extends U>>, int) - Method in class io.reactivex.rxjava3.core.Flowable
-
Returns a Flowable that concatenate each item emitted by the source Publisher with the values in an
Iterable corresponding to that item that is generated by a selector.
- concatMapIterable(Function<? super T, ? extends Iterable<? extends U>>) - Method in class io.reactivex.rxjava3.core.Observable
-
Returns an Observable that concatenate each item emitted by the source ObservableSource with the values in an
Iterable corresponding to that item that is generated by a selector.
- concatMapIterable(Function<? super T, ? extends Iterable<? extends U>>, int) - Method in class io.reactivex.rxjava3.core.Observable
-
Returns an Observable that concatenate each item emitted by the source ObservableSource with the values in an
Iterable corresponding to that item that is generated by a selector.
- concatMapMaybe(Function<? super T, ? extends MaybeSource<? extends R>>) - Method in class io.reactivex.rxjava3.core.Flowable
-
Maps the upstream items into
MaybeSource
s and subscribes to them one after the
other succeeds or completes, emits their success value if available or terminates immediately if
either this
Flowable
or the current inner
MaybeSource
fail.
- concatMapMaybe(Function<? super T, ? extends MaybeSource<? extends R>>, int) - Method in class io.reactivex.rxjava3.core.Flowable
-
Maps the upstream items into
MaybeSource
s and subscribes to them one after the
other succeeds or completes, emits their success value if available or terminates immediately if
either this
Flowable
or the current inner
MaybeSource
fail.
- concatMapMaybe(Function<? super T, ? extends MaybeSource<? extends R>>) - Method in class io.reactivex.rxjava3.core.Observable
-
Maps the upstream items into
MaybeSource
s and subscribes to them one after the
other succeeds or completes, emits their success value if available or terminates immediately if
either this
Observable
or the current inner
MaybeSource
fail.
- concatMapMaybe(Function<? super T, ? extends MaybeSource<? extends R>>, int) - Method in class io.reactivex.rxjava3.core.Observable
-
Maps the upstream items into
MaybeSource
s and subscribes to them one after the
other succeeds or completes, emits their success value if available or terminates immediately if
either this
Observable
or the current inner
MaybeSource
fail.
- concatMapMaybeDelayError(Function<? super T, ? extends MaybeSource<? extends R>>) - Method in class io.reactivex.rxjava3.core.Flowable
-
Maps the upstream items into
MaybeSource
s and subscribes to them one after the
other terminates, emits their success value if available and delaying all errors
till both this
Flowable
and all inner
MaybeSource
s terminate.
- concatMapMaybeDelayError(Function<? super T, ? extends MaybeSource<? extends R>>, boolean) - Method in class io.reactivex.rxjava3.core.Flowable
-
Maps the upstream items into
MaybeSource
s and subscribes to them one after the
other terminates, emits their success value if available and optionally delaying all errors
till both this
Flowable
and all inner
MaybeSource
s terminate.
- concatMapMaybeDelayError(Function<? super T, ? extends MaybeSource<? extends R>>, boolean, int) - Method in class io.reactivex.rxjava3.core.Flowable
-
Maps the upstream items into
MaybeSource
s and subscribes to them one after the
other terminates, emits their success value if available and optionally delaying all errors
till both this
Flowable
and all inner
MaybeSource
s terminate.
- concatMapMaybeDelayError(Function<? super T, ? extends MaybeSource<? extends R>>) - Method in class io.reactivex.rxjava3.core.Observable
-
Maps the upstream items into
MaybeSource
s and subscribes to them one after the
other terminates, emits their success value if available and delaying all errors
till both this
Observable
and all inner
MaybeSource
s terminate.
- concatMapMaybeDelayError(Function<? super T, ? extends MaybeSource<? extends R>>, boolean) - Method in class io.reactivex.rxjava3.core.Observable
-
Maps the upstream items into
MaybeSource
s and subscribes to them one after the
other terminates, emits their success value if available and optionally delaying all errors
till both this
Observable
and all inner
MaybeSource
s terminate.
- concatMapMaybeDelayError(Function<? super T, ? extends MaybeSource<? extends R>>, boolean, int) - Method in class io.reactivex.rxjava3.core.Observable
-
Maps the upstream items into
MaybeSource
s and subscribes to them one after the
other terminates, emits their success value if available and optionally delaying all errors
till both this
Observable
and all inner
MaybeSource
s terminate.
- concatMapSingle(Function<? super T, ? extends SingleSource<? extends R>>) - Method in class io.reactivex.rxjava3.core.Flowable
-
Maps the upstream items into
SingleSource
s and subscribes to them one after the
other succeeds, emits their success values or terminates immediately if
either this
Flowable
or the current inner
SingleSource
fail.
- concatMapSingle(Function<? super T, ? extends SingleSource<? extends R>>, int) - Method in class io.reactivex.rxjava3.core.Flowable
-
Maps the upstream items into
SingleSource
s and subscribes to them one after the
other succeeds, emits their success values or terminates immediately if
either this
Flowable
or the current inner
SingleSource
fail.
- concatMapSingle(Function<? super T, ? extends SingleSource<? extends R>>) - Method in class io.reactivex.rxjava3.core.Observable
-
Maps the upstream items into
SingleSource
s and subscribes to them one after the
other succeeds, emits their success values or terminates immediately if
either this
Observable
or the current inner
SingleSource
fail.
- concatMapSingle(Function<? super T, ? extends SingleSource<? extends R>>, int) - Method in class io.reactivex.rxjava3.core.Observable
-
Maps the upstream items into
SingleSource
s and subscribes to them one after the
other succeeds, emits their success values or terminates immediately if
either this
Observable
or the current inner
SingleSource
fail.
- concatMapSingleDelayError(Function<? super T, ? extends SingleSource<? extends R>>) - Method in class io.reactivex.rxjava3.core.Flowable
-
Maps the upstream items into
SingleSource
s and subscribes to them one after the
other succeeds or fails, emits their success values and delays all errors
till both this
Flowable
and all inner
SingleSource
s terminate.
- concatMapSingleDelayError(Function<? super T, ? extends SingleSource<? extends R>>, boolean) - Method in class io.reactivex.rxjava3.core.Flowable
-
Maps the upstream items into
SingleSource
s and subscribes to them one after the
other succeeds or fails, emits their success values and optionally delays all errors
till both this
Flowable
and all inner
SingleSource
s terminate.
- concatMapSingleDelayError(Function<? super T, ? extends SingleSource<? extends R>>, boolean, int) - Method in class io.reactivex.rxjava3.core.Flowable
-
Maps the upstream items into
SingleSource
s and subscribes to them one after the
other succeeds or fails, emits their success values and optionally delays errors
till both this
Flowable
and all inner
SingleSource
s terminate.
- concatMapSingleDelayError(Function<? super T, ? extends SingleSource<? extends R>>) - Method in class io.reactivex.rxjava3.core.Observable
-
Maps the upstream items into
SingleSource
s and subscribes to them one after the
other succeeds or fails, emits their success values and delays all errors
till both this
Observable
and all inner
SingleSource
s terminate.
- concatMapSingleDelayError(Function<? super T, ? extends SingleSource<? extends R>>, boolean) - Method in class io.reactivex.rxjava3.core.Observable
-
Maps the upstream items into
SingleSource
s and subscribes to them one after the
other succeeds or fails, emits their success values and optionally delays all errors
till both this
Observable
and all inner
SingleSource
s terminate.
- concatMapSingleDelayError(Function<? super T, ? extends SingleSource<? extends R>>, boolean, int) - Method in class io.reactivex.rxjava3.core.Observable
-
Maps the upstream items into
SingleSource
s and subscribes to them one after the
other succeeds or fails, emits their success values and optionally delays errors
till both this
Observable
and all inner
SingleSource
s terminate.
- concatWith(CompletableSource) - Method in class io.reactivex.rxjava3.core.Completable
-
Concatenates this Completable with another Completable.
- concatWith(Publisher<? extends T>) - Method in class io.reactivex.rxjava3.core.Flowable
-
Returns a Flowable that emits the items emitted from the current Publisher, then the next, one after
the other, without interleaving them.
- concatWith(SingleSource<? extends T>) - Method in class io.reactivex.rxjava3.core.Flowable
-
Returns a
Flowable
that emits the items from this
Flowable
followed by the success item or error event
of the other
SingleSource
.
- concatWith(MaybeSource<? extends T>) - Method in class io.reactivex.rxjava3.core.Flowable
-
Returns a
Flowable
that emits the items from this
Flowable
followed by the success item or terminal events
of the other
MaybeSource
.
- concatWith(CompletableSource) - Method in class io.reactivex.rxjava3.core.Flowable
-
Returns a
Flowable
that emits items from this
Flowable
and when it completes normally, the
other
CompletableSource
is subscribed to and the returned
Flowable
emits its terminal events.
- concatWith(MaybeSource<? extends T>) - Method in class io.reactivex.rxjava3.core.Maybe
-
Returns a Flowable that emits the items emitted from the current MaybeSource, then the next, one after
the other, without interleaving them.
- concatWith(ObservableSource<? extends T>) - Method in class io.reactivex.rxjava3.core.Observable
-
Returns an Observable that emits the items emitted from the current ObservableSource, then the next, one after
the other, without interleaving them.
- concatWith(SingleSource<? extends T>) - Method in class io.reactivex.rxjava3.core.Observable
-
Returns an
Observable
that emits the items from this
Observable
followed by the success item or error event
of the other
SingleSource
.
- concatWith(MaybeSource<? extends T>) - Method in class io.reactivex.rxjava3.core.Observable
-
Returns an
Observable
that emits the items from this
Observable
followed by the success item or terminal events
of the other
MaybeSource
.
- concatWith(CompletableSource) - Method in class io.reactivex.rxjava3.core.Observable
-
Returns an
Observable
that emits items from this
Observable
and when it completes normally, the
other
CompletableSource
is subscribed to and the returned
Observable
emits its terminal events.
- concatWith(SingleSource<? extends T>) - Method in class io.reactivex.rxjava3.core.Single
-
Returns a Flowable that emits the item emitted by the source Single, then the item emitted by the
specified Single.
- connect(Consumer<? super Disposable>) - Method in class io.reactivex.rxjava3.flowables.ConnectableFlowable
-
Instructs the
ConnectableFlowable
to begin emitting the items from its underlying
Flowable
to its
Subscriber
s.
- connect() - Method in class io.reactivex.rxjava3.flowables.ConnectableFlowable
-
Instructs the
ConnectableFlowable
to begin emitting the items from its underlying
Flowable
to its
Subscriber
s.
- connect(Consumer<? super Disposable>) - Method in class io.reactivex.rxjava3.observables.ConnectableObservable
-
Instructs the
ConnectableObservable
to begin emitting the items from its underlying
Observable
to its
Observer
s.
- connect() - Method in class io.reactivex.rxjava3.observables.ConnectableObservable
-
Instructs the
ConnectableObservable
to begin emitting the items from its underlying
Observable
to its
Observer
s.
- ConnectableFlowable<T> - Class in io.reactivex.rxjava3.flowables
-
- ConnectableFlowable() - Constructor for class io.reactivex.rxjava3.flowables.ConnectableFlowable
-
- ConnectableObservable<T> - Class in io.reactivex.rxjava3.observables
-
- ConnectableObservable() - Constructor for class io.reactivex.rxjava3.observables.ConnectableObservable
-
- Consumer<T> - Interface in io.reactivex.rxjava3.functions
-
A functional interface (callback) that accepts a single value.
- contains(Object) - Method in class io.reactivex.rxjava3.core.Flowable
-
Returns a Single that emits a Boolean that indicates whether the source Publisher emitted a
specified item.
- contains(Object) - Method in class io.reactivex.rxjava3.core.Maybe
-
Returns a Single that emits a Boolean that indicates whether the source Maybe emitted a
specified item.
- contains(Object) - Method in class io.reactivex.rxjava3.core.Observable
-
Returns a Single that emits a Boolean that indicates whether the source ObservableSource emitted a
specified item.
- contains(Object) - Method in class io.reactivex.rxjava3.core.Single
-
Signals true if the current Single signals a success value that is Object-equals with the value
provided.
- contains(Object, BiPredicate<Object, Object>) - Method in class io.reactivex.rxjava3.core.Single
-
Signals true if the current Single signals a success value that is equal with
the value provided by calling a bi-predicate.
- count() - Method in class io.reactivex.rxjava3.core.Flowable
-
Returns a Single that counts the total number of items emitted by the source Publisher and emits
this count as a 64-bit Long.
- count() - Method in class io.reactivex.rxjava3.core.Maybe
-
Returns a Single that counts the total number of items emitted (0 or 1) by the source Maybe and emits
this count as a 64-bit Long.
- count() - Method in class io.reactivex.rxjava3.core.Observable
-
Returns a Single that counts the total number of items emitted by the source ObservableSource and emits
this count as a 64-bit Long.
- create(CompletableOnSubscribe) - Static method in class io.reactivex.rxjava3.core.Completable
-
Provides an API (via a cold Completable) that bridges the reactive world with the callback-style world.
- create(FlowableOnSubscribe<T>, BackpressureStrategy) - Static method in class io.reactivex.rxjava3.core.Flowable
-
Provides an API (via a cold Flowable) that bridges the reactive world with the callback-style,
generally non-backpressured world.
- create(MaybeOnSubscribe<T>) - Static method in class io.reactivex.rxjava3.core.Maybe
-
Provides an API (via a cold Maybe) that bridges the reactive world with the callback-style world.
- create(ObservableOnSubscribe<T>) - Static method in class io.reactivex.rxjava3.core.Observable
-
Provides an API (via a cold Observable) that bridges the reactive world with the callback-style world.
- create(SingleOnSubscribe<T>) - Static method in class io.reactivex.rxjava3.core.Single
-
Provides an API (via a cold Single) that bridges the reactive world with the callback-style world.
- create() - Static method in class io.reactivex.rxjava3.observers.TestObserver
-
Constructs a non-forwarding TestObserver.
- create(Observer<? super T>) - Static method in class io.reactivex.rxjava3.observers.TestObserver
-
Constructs a forwarding TestObserver.
- create() - Static method in class io.reactivex.rxjava3.processors.AsyncProcessor
-
Creates a new AsyncProcessor.
- create() - Static method in class io.reactivex.rxjava3.processors.BehaviorProcessor
-
- create() - Static method in class io.reactivex.rxjava3.processors.MulticastProcessor
-
Constructs a fresh instance with the default Flowable.bufferSize() prefetch
amount and no refCount-behavior.
- create(boolean) - Static method in class io.reactivex.rxjava3.processors.MulticastProcessor
-
Constructs a fresh instance with the default Flowable.bufferSize() prefetch
amount and the optional refCount-behavior.
- create(int) - Static method in class io.reactivex.rxjava3.processors.MulticastProcessor
-
Constructs a fresh instance with the given prefetch amount and no refCount behavior.
- create(int, boolean) - Static method in class io.reactivex.rxjava3.processors.MulticastProcessor
-
Constructs a fresh instance with the given prefetch amount and the optional
refCount-behavior.
- create() - Static method in class io.reactivex.rxjava3.processors.PublishProcessor
-
Constructs a PublishProcessor.
- create() - Static method in class io.reactivex.rxjava3.processors.ReplayProcessor
-
Creates an unbounded ReplayProcessor.
- create(int) - Static method in class io.reactivex.rxjava3.processors.ReplayProcessor
-
Creates an unbounded ReplayProcessor with the specified initial buffer capacity.
- create() - Static method in class io.reactivex.rxjava3.processors.UnicastProcessor
-
Creates an UnicastSubject with an internal buffer capacity hint 16.
- create(int) - Static method in class io.reactivex.rxjava3.processors.UnicastProcessor
-
Creates an UnicastProcessor with the given internal buffer capacity hint.
- create(boolean) - Static method in class io.reactivex.rxjava3.processors.UnicastProcessor
-
Creates an UnicastProcessor with default internal buffer capacity hint and delay error flag.
- create(int, Runnable) - Static method in class io.reactivex.rxjava3.processors.UnicastProcessor
-
Creates an UnicastProcessor with the given internal buffer capacity hint and a callback for
the case when the single Subscriber cancels its subscription.
- create(int, Runnable, boolean) - Static method in class io.reactivex.rxjava3.processors.UnicastProcessor
-
Creates an UnicastProcessor with the given internal buffer capacity hint, delay error flag and a callback for
the case when the single Subscriber cancels its subscription.
- create() - Static method in class io.reactivex.rxjava3.subjects.AsyncSubject
-
Creates a new AsyncProcessor.
- create() - Static method in class io.reactivex.rxjava3.subjects.BehaviorSubject
-
- create() - Static method in class io.reactivex.rxjava3.subjects.CompletableSubject
-
Creates a fresh CompletableSubject.
- create() - Static method in class io.reactivex.rxjava3.subjects.MaybeSubject
-
Creates a fresh MaybeSubject.
- create() - Static method in class io.reactivex.rxjava3.subjects.PublishSubject
-
Constructs a PublishSubject.
- create() - Static method in class io.reactivex.rxjava3.subjects.ReplaySubject
-
Creates an unbounded replay subject.
- create(int) - Static method in class io.reactivex.rxjava3.subjects.ReplaySubject
-
Creates an unbounded replay subject with the specified initial buffer capacity.
- create() - Static method in class io.reactivex.rxjava3.subjects.SingleSubject
-
Creates a fresh SingleSubject.
- create() - Static method in class io.reactivex.rxjava3.subjects.UnicastSubject
-
Creates an UnicastSubject with an internal buffer capacity hint 16.
- create(int) - Static method in class io.reactivex.rxjava3.subjects.UnicastSubject
-
Creates an UnicastSubject with the given internal buffer capacity hint.
- create(int, Runnable) - Static method in class io.reactivex.rxjava3.subjects.UnicastSubject
-
Creates an UnicastSubject with the given internal buffer capacity hint and a callback for
the case when the single Subscriber cancels its subscription.
- create(int, Runnable, boolean) - Static method in class io.reactivex.rxjava3.subjects.UnicastSubject
-
Creates an UnicastSubject with the given internal buffer capacity hint, delay error flag and
a callback for the case when the single Subscriber cancels its subscription.
- create(boolean) - Static method in class io.reactivex.rxjava3.subjects.UnicastSubject
-
Creates an UnicastSubject with an internal buffer capacity hint 16 and given delay error flag.
- create() - Static method in class io.reactivex.rxjava3.subscribers.TestSubscriber
-
Creates a TestSubscriber with Long.MAX_VALUE initial request.
- create(long) - Static method in class io.reactivex.rxjava3.subscribers.TestSubscriber
-
Creates a TestSubscriber with the given initial request.
- create(Subscriber<? super T>) - Static method in class io.reactivex.rxjava3.subscribers.TestSubscriber
-
Constructs a forwarding TestSubscriber.
- createComputationScheduler(ThreadFactory) - Static method in class io.reactivex.rxjava3.plugins.RxJavaPlugins
-
- createDefault(T) - Static method in class io.reactivex.rxjava3.processors.BehaviorProcessor
-
- createDefault(T) - Static method in class io.reactivex.rxjava3.subjects.BehaviorSubject
-
Creates a
BehaviorSubject
that emits the last item it observed and all subsequent items to each
Observer
that subscribes to it.
- createIoScheduler(ThreadFactory) - Static method in class io.reactivex.rxjava3.plugins.RxJavaPlugins
-
- createNewThreadScheduler(ThreadFactory) - Static method in class io.reactivex.rxjava3.plugins.RxJavaPlugins
-
- createOnComplete() - Static method in class io.reactivex.rxjava3.core.Notification
-
Returns the empty and stateless shared instance of a notification representing
an onComplete signal.
- createOnError(Throwable) - Static method in class io.reactivex.rxjava3.core.Notification
-
Constructs an onError notification containing the error.
- createOnNext(T) - Static method in class io.reactivex.rxjava3.core.Notification
-
Constructs an onNext notification containing the given value.
- createSingleScheduler(ThreadFactory) - Static method in class io.reactivex.rxjava3.plugins.RxJavaPlugins
-
- createWithSize(int) - Static method in class io.reactivex.rxjava3.processors.ReplayProcessor
-
Creates a size-bounded ReplayProcessor.
- createWithSize(int) - Static method in class io.reactivex.rxjava3.subjects.ReplaySubject
-
Creates a size-bounded replay subject.
- createWithTime(long, TimeUnit, Scheduler) - Static method in class io.reactivex.rxjava3.processors.ReplayProcessor
-
Creates a time-bounded ReplayProcessor.
- createWithTime(long, TimeUnit, Scheduler) - Static method in class io.reactivex.rxjava3.subjects.ReplaySubject
-
Creates a time-bounded replay subject.
- createWithTimeAndSize(long, TimeUnit, Scheduler, int) - Static method in class io.reactivex.rxjava3.processors.ReplayProcessor
-
Creates a time- and size-bounded ReplayProcessor.
- createWithTimeAndSize(long, TimeUnit, Scheduler, int) - Static method in class io.reactivex.rxjava3.subjects.ReplaySubject
-
Creates a time- and size-bounded replay subject.
- createWorker() - Method in class io.reactivex.rxjava3.core.Scheduler
-
Retrieves or creates a new
Scheduler.Worker
that represents sequential execution of actions.
- createWorker() - Method in class io.reactivex.rxjava3.schedulers.TestScheduler
-
- CUSTOM - Static variable in annotation type io.reactivex.rxjava3.annotations.SchedulerSupport
-
A special value indicating the operator/class requires a scheduler to be manually specified.
- debounce(Function<? super T, ? extends Publisher<U>>) - Method in class io.reactivex.rxjava3.core.Flowable
-
Returns a Flowable that mirrors the source Publisher, except that it drops items emitted by the
source Publisher that are followed by another item within a computed debounce duration.
- debounce(long, TimeUnit) - Method in class io.reactivex.rxjava3.core.Flowable
-
Returns a Flowable that mirrors the source Publisher, except that it drops items emitted by the
source Publisher that are followed by newer items before a timeout value expires.
- debounce(long, TimeUnit, Scheduler) - Method in class io.reactivex.rxjava3.core.Flowable
-
Returns a Flowable that mirrors the source Publisher, except that it drops items emitted by the
source Publisher that are followed by newer items before a timeout value expires on a specified
Scheduler.
- debounce(Function<? super T, ? extends ObservableSource<U>>) - Method in class io.reactivex.rxjava3.core.Observable
-
Returns an Observable that mirrors the source ObservableSource, except that it drops items emitted by the
source ObservableSource that are followed by another item within a computed debounce duration.
- debounce(long, TimeUnit) - Method in class io.reactivex.rxjava3.core.Observable
-
Returns an Observable that mirrors the source ObservableSource, except that it drops items emitted by the
source ObservableSource that are followed by newer items before a timeout value expires.
- debounce(long, TimeUnit, Scheduler) - Method in class io.reactivex.rxjava3.core.Observable
-
Returns an Observable that mirrors the source ObservableSource, except that it drops items emitted by the
source ObservableSource that are followed by newer items before a timeout value expires on a specified
Scheduler.
- defaultIfEmpty(T) - Method in class io.reactivex.rxjava3.core.Flowable
-
Returns a Flowable that emits the items emitted by the source Publisher or a specified default item
if the source Publisher is empty.
- defaultIfEmpty(T) - Method in class io.reactivex.rxjava3.core.Maybe
-
Returns a Single that emits the item emitted by the source Maybe or a specified default item
if the source Maybe is empty.
- defaultIfEmpty(T) - Method in class io.reactivex.rxjava3.core.Observable
-
Returns an Observable that emits the items emitted by the source ObservableSource or a specified default item
if the source ObservableSource is empty.
- DefaultObserver<T> - Class in io.reactivex.rxjava3.observers
-
- DefaultObserver() - Constructor for class io.reactivex.rxjava3.observers.DefaultObserver
-
- DefaultSubscriber<T> - Class in io.reactivex.rxjava3.subscribers
-
- DefaultSubscriber() - Constructor for class io.reactivex.rxjava3.subscribers.DefaultSubscriber
-
- defer(Supplier<? extends CompletableSource>) - Static method in class io.reactivex.rxjava3.core.Completable
-
Defers the subscription to a Completable instance returned by a supplier.
- defer(Supplier<? extends Publisher<? extends T>>) - Static method in class io.reactivex.rxjava3.core.Flowable
-
Returns a Flowable that calls a Publisher factory to create a Publisher for each new Subscriber
that subscribes.
- defer(Supplier<? extends MaybeSource<? extends T>>) - Static method in class io.reactivex.rxjava3.core.Maybe
-
Calls a Supplier for each individual MaybeObserver to return the actual MaybeSource source to
be subscribed to.
- defer(Supplier<? extends ObservableSource<? extends T>>) - Static method in class io.reactivex.rxjava3.core.Observable
-
Returns an Observable that calls an ObservableSource factory to create an ObservableSource for each new Observer
that subscribes.
- defer(Supplier<? extends SingleSource<? extends T>>) - Static method in class io.reactivex.rxjava3.core.Single
-
- delay(long, TimeUnit) - Method in class io.reactivex.rxjava3.core.Completable
-
Returns a Completable which delays the emission of the completion event by the given time.
- delay(long, TimeUnit, Scheduler) - Method in class io.reactivex.rxjava3.core.Completable
-
Returns a Completable which delays the emission of the completion event by the given time while
running on the specified scheduler.
- delay(long, TimeUnit, Scheduler, boolean) - Method in class io.reactivex.rxjava3.core.Completable
-
Returns a Completable which delays the emission of the completion event, and optionally the error as well, by the given time while
running on the specified scheduler.
- delay(Function<? super T, ? extends Publisher<U>>) - Method in class io.reactivex.rxjava3.core.Flowable
-
Returns a Flowable that delays the emissions of the source Publisher via another Publisher on a
per-item basis.
- delay(long, TimeUnit) - Method in class io.reactivex.rxjava3.core.Flowable
-
Returns a Flowable that emits the items emitted by the source Publisher shifted forward in time by a
specified delay.
- delay(long, TimeUnit, boolean) - Method in class io.reactivex.rxjava3.core.Flowable
-
Returns a Flowable that emits the items emitted by the source Publisher shifted forward in time by a
specified delay.
- delay(long, TimeUnit, Scheduler) - Method in class io.reactivex.rxjava3.core.Flowable
-
Returns a Flowable that emits the items emitted by the source Publisher shifted forward in time by a
specified delay.
- delay(long, TimeUnit, Scheduler, boolean) - Method in class io.reactivex.rxjava3.core.Flowable
-
Returns a Flowable that emits the items emitted by the source Publisher shifted forward in time by a
specified delay.
- delay(Publisher<U>, Function<? super T, ? extends Publisher<V>>) - Method in class io.reactivex.rxjava3.core.Flowable
-
Returns a Flowable that delays the subscription to and emissions from the source Publisher via another
Publisher on a per-item basis.
- delay(long, TimeUnit) - Method in class io.reactivex.rxjava3.core.Maybe
-
Returns a Maybe that signals the events emitted by the source Maybe shifted forward in time by a
specified delay.
- delay(long, TimeUnit, Scheduler) - Method in class io.reactivex.rxjava3.core.Maybe
-
Returns a Maybe that signals the events emitted by the source Maybe shifted forward in time by a
specified delay running on the specified Scheduler.
- delay(Publisher<U>) - Method in class io.reactivex.rxjava3.core.Maybe
-
Delays the emission of this Maybe until the given Publisher signals an item or completes.
- delay(Function<? super T, ? extends ObservableSource<U>>) - Method in class io.reactivex.rxjava3.core.Observable
-
Returns an Observable that delays the emissions of the source ObservableSource via another ObservableSource on a
per-item basis.
- delay(long, TimeUnit) - Method in class io.reactivex.rxjava3.core.Observable
-
Returns an Observable that emits the items emitted by the source ObservableSource shifted forward in time by a
specified delay.
- delay(long, TimeUnit, boolean) - Method in class io.reactivex.rxjava3.core.Observable
-
Returns an Observable that emits the items emitted by the source ObservableSource shifted forward in time by a
specified delay.
- delay(long, TimeUnit, Scheduler) - Method in class io.reactivex.rxjava3.core.Observable
-
Returns an Observable that emits the items emitted by the source ObservableSource shifted forward in time by a
specified delay.
- delay(long, TimeUnit, Scheduler, boolean) - Method in class io.reactivex.rxjava3.core.Observable
-
Returns an Observable that emits the items emitted by the source ObservableSource shifted forward in time by a
specified delay.
- delay(ObservableSource<U>, Function<? super T, ? extends ObservableSource<V>>) - Method in class io.reactivex.rxjava3.core.Observable
-
Returns an Observable that delays the subscription to and emissions from the source ObservableSource via another
ObservableSource on a per-item basis.
- delay(long, TimeUnit) - Method in class io.reactivex.rxjava3.core.Single
-
Delays the emission of the success signal from the current Single by the specified amount.
- delay(long, TimeUnit, boolean) - Method in class io.reactivex.rxjava3.core.Single
-
Delays the emission of the success or error signal from the current Single by the specified amount.
- delay(long, TimeUnit, Scheduler) - Method in class io.reactivex.rxjava3.core.Single
-
Delays the emission of the success signal from the current Single by the specified amount.
- delay(long, TimeUnit, Scheduler, boolean) - Method in class io.reactivex.rxjava3.core.Single
-
Delays the emission of the success or error signal from the current Single by the specified amount.
- delaySubscription(long, TimeUnit) - Method in class io.reactivex.rxjava3.core.Completable
-
Returns a Completable that delays the subscription to the source CompletableSource by a given amount of time.
- delaySubscription(long, TimeUnit, Scheduler) - Method in class io.reactivex.rxjava3.core.Completable
-
Returns a Completable that delays the subscription to the source CompletableSource by a given amount of time,
both waiting and subscribing on a given Scheduler.
- delaySubscription(Publisher<U>) - Method in class io.reactivex.rxjava3.core.Flowable
-
Returns a Flowable that delays the subscription to this Publisher
until the other Publisher emits an element or completes normally.
- delaySubscription(long, TimeUnit) - Method in class io.reactivex.rxjava3.core.Flowable
-
Returns a Flowable that delays the subscription to the source Publisher by a given amount of time.
- delaySubscription(long, TimeUnit, Scheduler) - Method in class io.reactivex.rxjava3.core.Flowable
-
Returns a Flowable that delays the subscription to the source Publisher by a given amount of time,
both waiting and subscribing on a given Scheduler.
- delaySubscription(Publisher<U>) - Method in class io.reactivex.rxjava3.core.Maybe
-
Returns a Maybe that delays the subscription to this Maybe
until the other Publisher emits an element or completes normally.
- delaySubscription(long, TimeUnit) - Method in class io.reactivex.rxjava3.core.Maybe
-
Returns a Maybe that delays the subscription to the source Maybe by a given amount of time.
- delaySubscription(long, TimeUnit, Scheduler) - Method in class io.reactivex.rxjava3.core.Maybe
-
Returns a Maybe that delays the subscription to the source Maybe by a given amount of time,
both waiting and subscribing on a given Scheduler.
- delaySubscription(ObservableSource<U>) - Method in class io.reactivex.rxjava3.core.Observable
-
Returns an Observable that delays the subscription to this Observable
until the other Observable emits an element or completes normally.
- delaySubscription(long, TimeUnit) - Method in class io.reactivex.rxjava3.core.Observable
-
Returns an Observable that delays the subscription to the source ObservableSource by a given amount of time.
- delaySubscription(long, TimeUnit, Scheduler) - Method in class io.reactivex.rxjava3.core.Observable
-
Returns an Observable that delays the subscription to the source ObservableSource by a given amount of time,
both waiting and subscribing on a given Scheduler.
- delaySubscription(CompletableSource) - Method in class io.reactivex.rxjava3.core.Single
-
Delays the actual subscription to the current Single until the given other CompletableSource
completes.
- delaySubscription(SingleSource<U>) - Method in class io.reactivex.rxjava3.core.Single
-
Delays the actual subscription to the current Single until the given other SingleSource
signals success.
- delaySubscription(ObservableSource<U>) - Method in class io.reactivex.rxjava3.core.Single
-
Delays the actual subscription to the current Single until the given other ObservableSource
signals its first value or completes.
- delaySubscription(Publisher<U>) - Method in class io.reactivex.rxjava3.core.Single
-
Delays the actual subscription to the current Single until the given other Publisher
signals its first value or completes.
- delaySubscription(long, TimeUnit) - Method in class io.reactivex.rxjava3.core.Single
-
Delays the actual subscription to the current Single until the given time delay elapsed.
- delaySubscription(long, TimeUnit, Scheduler) - Method in class io.reactivex.rxjava3.core.Single
-
Delays the actual subscription to the current Single until the given time delay elapsed.
- delete(Disposable) - Method in class io.reactivex.rxjava3.disposables.CompositeDisposable
-
Removes (but does not dispose) the given disposable if it is part of this
container.
- dematerialize(Function<? super T, Notification<R>>) - Method in class io.reactivex.rxjava3.core.Flowable
-
Returns a Flowable that reverses the effect of
materialize
by transforming the
Notification
objects extracted from the source items via a selector function
into their respective
Subscriber
signal types.
- dematerialize(Function<? super T, Notification<R>>) - Method in class io.reactivex.rxjava3.core.Observable
-
Returns an Observable that reverses the effect of
materialize
by transforming the
Notification
objects extracted from the source items via a selector function
into their respective
Observer
signal types.
- dematerialize(Function<? super T, Notification<R>>) - Method in class io.reactivex.rxjava3.core.Single
-
Maps the
Notification
success value of this Single back into normal
onSuccess
,
onError
or
onComplete
signals as a
Maybe
source.
- Disposable - Interface in io.reactivex.rxjava3.disposables
-
Represents a disposable resource.
- DisposableCompletableObserver - Class in io.reactivex.rxjava3.observers
-
An abstract
CompletableObserver
that allows asynchronous cancellation by implementing Disposable.
- DisposableCompletableObserver() - Constructor for class io.reactivex.rxjava3.observers.DisposableCompletableObserver
-
- DisposableMaybeObserver<T> - Class in io.reactivex.rxjava3.observers
-
An abstract
MaybeObserver
that allows asynchronous cancellation by implementing Disposable.
- DisposableMaybeObserver() - Constructor for class io.reactivex.rxjava3.observers.DisposableMaybeObserver
-
- DisposableObserver<T> - Class in io.reactivex.rxjava3.observers
-
An abstract
Observer
that allows asynchronous cancellation by implementing Disposable.
- DisposableObserver() - Constructor for class io.reactivex.rxjava3.observers.DisposableObserver
-
- Disposables - Class in io.reactivex.rxjava3.disposables
-
Utility class to help create disposables by wrapping
other types.
- DisposableSingleObserver<T> - Class in io.reactivex.rxjava3.observers
-
An abstract
SingleObserver
that allows asynchronous cancellation by implementing Disposable.
- DisposableSingleObserver() - Constructor for class io.reactivex.rxjava3.observers.DisposableSingleObserver
-
- DisposableSubscriber<T> - Class in io.reactivex.rxjava3.subscribers
-
An abstract Subscriber that allows asynchronous, external cancellation by implementing Disposable.
- DisposableSubscriber() - Constructor for class io.reactivex.rxjava3.subscribers.DisposableSubscriber
-
- dispose() - Method in class io.reactivex.rxjava3.disposables.CompositeDisposable
-
- dispose() - Method in interface io.reactivex.rxjava3.disposables.Disposable
-
Dispose the resource, the operation should be idempotent.
- dispose() - Method in class io.reactivex.rxjava3.disposables.SerialDisposable
-
- dispose() - Method in class io.reactivex.rxjava3.observers.BaseTestConsumer
-
Cancel/dispose this test consumer.
- dispose() - Method in class io.reactivex.rxjava3.observers.DisposableCompletableObserver
-
- dispose() - Method in class io.reactivex.rxjava3.observers.DisposableMaybeObserver
-
- dispose() - Method in class io.reactivex.rxjava3.observers.DisposableObserver
-
- dispose() - Method in class io.reactivex.rxjava3.observers.DisposableSingleObserver
-
- dispose() - Method in class io.reactivex.rxjava3.observers.ResourceCompletableObserver
-
Cancels the main disposable (if any) and disposes the resources associated with
this ResourceObserver (if any).
- dispose() - Method in class io.reactivex.rxjava3.observers.ResourceMaybeObserver
-
Cancels the main disposable (if any) and disposes the resources associated with
this ResourceObserver (if any).
- dispose() - Method in class io.reactivex.rxjava3.observers.ResourceObserver
-
Cancels the main disposable (if any) and disposes the resources associated with
this ResourceObserver (if any).
- dispose() - Method in class io.reactivex.rxjava3.observers.ResourceSingleObserver
-
Cancels the main disposable (if any) and disposes the resources associated with
this ResourceObserver (if any).
- dispose() - Method in class io.reactivex.rxjava3.observers.SafeObserver
-
- dispose() - Method in class io.reactivex.rxjava3.observers.SerializedObserver
-
- dispose() - Method in class io.reactivex.rxjava3.observers.TestObserver
-
- dispose() - Method in class io.reactivex.rxjava3.subscribers.DisposableSubscriber
-
- dispose() - Method in class io.reactivex.rxjava3.subscribers.ResourceSubscriber
-
Cancels the subscription (if any) and disposes the resources associated with
this AsyncObserver (if any).
- dispose() - Method in class io.reactivex.rxjava3.subscribers.TestSubscriber
-
- disposed() - Static method in class io.reactivex.rxjava3.disposables.Disposables
-
Returns a disposed Disposable instance.
- distinct() - Method in class io.reactivex.rxjava3.core.Flowable
-
Returns a Flowable that emits all items emitted by the source Publisher that are distinct
based on
Object.equals(Object)
comparison.
- distinct(Function<? super T, K>) - Method in class io.reactivex.rxjava3.core.Flowable
-
Returns a Flowable that emits all items emitted by the source Publisher that are distinct according
to a key selector function and based on
Object.equals(Object)
comparison of the objects
returned by the key selector function.
- distinct(Function<? super T, K>, Supplier<? extends Collection<? super K>>) - Method in class io.reactivex.rxjava3.core.Flowable
-
Returns a Flowable that emits all items emitted by the source Publisher that are distinct according
to a key selector function and based on
Object.equals(Object)
comparison of the objects
returned by the key selector function.
- distinct() - Method in class io.reactivex.rxjava3.core.Observable
-
Returns an Observable that emits all items emitted by the source ObservableSource that are distinct
based on
Object.equals(Object)
comparison.
- distinct(Function<? super T, K>) - Method in class io.reactivex.rxjava3.core.Observable
-
Returns an Observable that emits all items emitted by the source ObservableSource that are distinct according
to a key selector function and based on
Object.equals(Object)
comparison of the objects
returned by the key selector function.
- distinct(Function<? super T, K>, Supplier<? extends Collection<? super K>>) - Method in class io.reactivex.rxjava3.core.Observable
-
Returns an Observable that emits all items emitted by the source ObservableSource that are distinct according
to a key selector function and based on
Object.equals(Object)
comparison of the objects
returned by the key selector function.
- distinctUntilChanged() - Method in class io.reactivex.rxjava3.core.Flowable
-
Returns a Flowable that emits all items emitted by the source Publisher that are distinct from their
immediate predecessors based on
Object.equals(Object)
comparison.
- distinctUntilChanged(Function<? super T, K>) - Method in class io.reactivex.rxjava3.core.Flowable
-
Returns a Flowable that emits all items emitted by the source Publisher that are distinct from their
immediate predecessors, according to a key selector function and based on
Object.equals(Object)
comparison
of those objects returned by the key selector function.
- distinctUntilChanged(BiPredicate<? super T, ? super T>) - Method in class io.reactivex.rxjava3.core.Flowable
-
Returns a Flowable that emits all items emitted by the source Publisher that are distinct from their
immediate predecessors when compared with each other via the provided comparator function.
- distinctUntilChanged() - Method in class io.reactivex.rxjava3.core.Observable
-
Returns an Observable that emits all items emitted by the source ObservableSource that are distinct from their
immediate predecessors based on
Object.equals(Object)
comparison.
- distinctUntilChanged(Function<? super T, K>) - Method in class io.reactivex.rxjava3.core.Observable
-
Returns an Observable that emits all items emitted by the source ObservableSource that are distinct from their
immediate predecessors, according to a key selector function and based on
Object.equals(Object)
comparison
of those objects returned by the key selector function.
- distinctUntilChanged(BiPredicate<? super T, ? super T>) - Method in class io.reactivex.rxjava3.core.Observable
-
Returns an Observable that emits all items emitted by the source ObservableSource that are distinct from their
immediate predecessors when compared with each other via the provided comparator function.
- doAfterNext(Consumer<? super T>) - Method in class io.reactivex.rxjava3.core.Flowable
-
Calls the specified consumer with the current item after this item has been emitted to the downstream.
- doAfterNext(Consumer<? super T>) - Method in class io.reactivex.rxjava3.core.Observable
-
Calls the specified consumer with the current item after this item has been emitted to the downstream.
- doAfterNext(Consumer<? super T>) - Method in class io.reactivex.rxjava3.parallel.ParallelFlowable
-
Call the specified consumer with the current element passing through any 'rail'
after it has been delivered to downstream within the rail.
- doAfterSuccess(Consumer<? super T>) - Method in class io.reactivex.rxjava3.core.Maybe
-
Calls the specified consumer with the success item after this item has been emitted to the downstream.
- doAfterSuccess(Consumer<? super T>) - Method in class io.reactivex.rxjava3.core.Single
-
Calls the specified consumer with the success item after this item has been emitted to the downstream.
- doAfterTerminate(Action) - Method in class io.reactivex.rxjava3.core.Completable
-
Returns a Completable instance that calls the given onTerminate callback after this Completable
completes normally or with an exception.
- doAfterTerminate(Action) - Method in class io.reactivex.rxjava3.core.Flowable
-
- doAfterTerminate(Action) - Method in class io.reactivex.rxjava3.core.Maybe
-
- doAfterTerminate(Action) - Method in class io.reactivex.rxjava3.core.Observable
-
- doAfterTerminate(Action) - Method in class io.reactivex.rxjava3.core.Single
-
Registers an
Action
to be called after this Single invokes either onSuccess or onError.
- doAfterTerminated(Action) - Method in class io.reactivex.rxjava3.parallel.ParallelFlowable
-
Run the specified Action when a 'rail' completes or signals an error.
- doFinally(Action) - Method in class io.reactivex.rxjava3.core.Completable
-
Calls the specified action after this Completable signals onError or onComplete or gets disposed by
the downstream.
- doFinally(Action) - Method in class io.reactivex.rxjava3.core.Flowable
-
Calls the specified action after this Flowable signals onError or onCompleted or gets canceled by
the downstream.
- doFinally(Action) - Method in class io.reactivex.rxjava3.core.Maybe
-
Calls the specified action after this Maybe signals onSuccess, onError or onComplete or gets disposed by
the downstream.
- doFinally(Action) - Method in class io.reactivex.rxjava3.core.Observable
-
Calls the specified action after this Observable signals onError or onCompleted or gets disposed by
the downstream.
- doFinally(Action) - Method in class io.reactivex.rxjava3.core.Single
-
Calls the specified action after this Single signals onSuccess or onError or gets disposed by
the downstream.
- done - Variable in class io.reactivex.rxjava3.observers.BaseTestConsumer
-
The latch that indicates an onError or onComplete has been called.
- doOnCancel(Action) - Method in class io.reactivex.rxjava3.core.Flowable
-
Calls the cancel Action
if the downstream cancels the sequence.
- doOnCancel(Action) - Method in class io.reactivex.rxjava3.parallel.ParallelFlowable
-
Run the specified Action when a 'rail' receives a cancellation.
- doOnComplete(Action) - Method in class io.reactivex.rxjava3.core.Completable
-
Returns a Completable which calls the given onComplete callback if this Completable completes.
- doOnComplete(Action) - Method in class io.reactivex.rxjava3.core.Flowable
-
Modifies the source Publisher so that it invokes an action when it calls onComplete
.
- doOnComplete(Action) - Method in class io.reactivex.rxjava3.core.Maybe
-
Modifies the source Maybe so that it invokes an action when it calls onComplete
.
- doOnComplete(Action) - Method in class io.reactivex.rxjava3.core.Observable
-
Modifies the source ObservableSource so that it invokes an action when it calls onComplete
.
- doOnComplete(Action) - Method in class io.reactivex.rxjava3.parallel.ParallelFlowable
-
Run the specified Action when a 'rail' completes.
- doOnDispose(Action) - Method in class io.reactivex.rxjava3.core.Completable
-
Calls the shared Action
if a CompletableObserver subscribed to the current
Completable disposes the common Disposable it received via onSubscribe.
- doOnDispose(Action) - Method in class io.reactivex.rxjava3.core.Maybe
-
Calls the shared Action
if a MaybeObserver subscribed to the current Maybe
disposes the common Disposable it received via onSubscribe.
- doOnDispose(Action) - Method in class io.reactivex.rxjava3.core.Observable
-
Calls the dispose Action
if the downstream disposes the sequence.
- doOnDispose(Action) - Method in class io.reactivex.rxjava3.core.Single
-
Calls the shared Action
if a SingleObserver subscribed to the current Single
disposes the common Disposable it received via onSubscribe.
- doOnEach(Consumer<? super Notification<T>>) - Method in class io.reactivex.rxjava3.core.Flowable
-
Modifies the source Publisher so that it invokes an action for each item it emits.
- doOnEach(Subscriber<? super T>) - Method in class io.reactivex.rxjava3.core.Flowable
-
Modifies the source Publisher so that it notifies a Subscriber for each item and terminal event it emits.
- doOnEach(Consumer<? super Notification<T>>) - Method in class io.reactivex.rxjava3.core.Observable
-
Modifies the source ObservableSource so that it invokes an action for each item it emits.
- doOnEach(Observer<? super T>) - Method in class io.reactivex.rxjava3.core.Observable
-
Modifies the source ObservableSource so that it notifies an Observer for each item and terminal event it emits.
- doOnError(Consumer<? super Throwable>) - Method in class io.reactivex.rxjava3.core.Completable
-
Returns a Completable which calls the given onError callback if this Completable emits an error.
- doOnError(Consumer<? super Throwable>) - Method in class io.reactivex.rxjava3.core.Flowable
-
Modifies the source Publisher so that it invokes an action if it calls onError
.
- doOnError(Consumer<? super Throwable>) - Method in class io.reactivex.rxjava3.core.Maybe
-
Calls the shared consumer with the error sent via onError for each
MaybeObserver that subscribes to the current Maybe.
- doOnError(Consumer<? super Throwable>) - Method in class io.reactivex.rxjava3.core.Observable
-
Modifies the source ObservableSource so that it invokes an action if it calls onError
.
- doOnError(Consumer<? super Throwable>) - Method in class io.reactivex.rxjava3.core.Single
-
Calls the shared consumer with the error sent via onError for each
SingleObserver that subscribes to the current Single.
- doOnError(Consumer<Throwable>) - Method in class io.reactivex.rxjava3.parallel.ParallelFlowable
-
Call the specified consumer with the exception passing through any 'rail'.
- doOnEvent(Consumer<? super Throwable>) - Method in class io.reactivex.rxjava3.core.Completable
-
Returns a Completable which calls the given onEvent callback with the (throwable) for an onError
or (null) for an onComplete signal from this Completable before delivering said signal to the downstream.
- doOnEvent(BiConsumer<? super T, ? super Throwable>) - Method in class io.reactivex.rxjava3.core.Maybe
-
Calls the given onEvent callback with the (success value, null) for an onSuccess, (null, throwable) for
an onError or (null, null) for an onComplete signal from this Maybe before delivering said
signal to the downstream.
- doOnEvent(BiConsumer<? super T, ? super Throwable>) - Method in class io.reactivex.rxjava3.core.Single
-
Calls the shared consumer with the error sent via onError or the value
via onSuccess for each SingleObserver that subscribes to the current Single.
- doOnLifecycle(Consumer<? super Subscription>, LongConsumer, Action) - Method in class io.reactivex.rxjava3.core.Flowable
-
Calls the appropriate onXXX method (shared between all Subscribers) for the lifecycle events of
the sequence (subscription, cancellation, requesting).
- doOnLifecycle(Consumer<? super Disposable>, Action) - Method in class io.reactivex.rxjava3.core.Observable
-
Calls the appropriate onXXX method (shared between all Observer) for the lifecycle events of
the sequence (subscription, disposal).
- doOnNext(Consumer<? super T>) - Method in class io.reactivex.rxjava3.core.Flowable
-
Modifies the source Publisher so that it invokes an action when it calls onNext
.
- doOnNext(Consumer<? super T>) - Method in class io.reactivex.rxjava3.core.Observable
-
Modifies the source ObservableSource so that it invokes an action when it calls onNext
.
- doOnNext(Consumer<? super T>) - Method in class io.reactivex.rxjava3.parallel.ParallelFlowable
-
Call the specified consumer with the current element passing through any 'rail'.
- doOnNext(Consumer<? super T>, ParallelFailureHandling) - Method in class io.reactivex.rxjava3.parallel.ParallelFlowable
-
Call the specified consumer with the current element passing through any 'rail' and
handles errors based on the given
ParallelFailureHandling
enumeration value.
- doOnNext(Consumer<? super T>, BiFunction<? super Long, ? super Throwable, ParallelFailureHandling>) - Method in class io.reactivex.rxjava3.parallel.ParallelFlowable
-
Call the specified consumer with the current element passing through any 'rail' and
handles errors based on the returned value by the handler function.
- doOnRequest(LongConsumer) - Method in class io.reactivex.rxjava3.core.Flowable
-
Modifies the source Publisher
so that it invokes the given action when it receives a
request for more items.
- doOnRequest(LongConsumer) - Method in class io.reactivex.rxjava3.parallel.ParallelFlowable
-
Call the specified consumer with the request amount if any rail receives a request.
- doOnSubscribe(Consumer<? super Disposable>) - Method in class io.reactivex.rxjava3.core.Completable
-
Returns a Completable instance that calls the given onSubscribe callback with the disposable
that child subscribers receive on subscription.
- doOnSubscribe(Consumer<? super Subscription>) - Method in class io.reactivex.rxjava3.core.Flowable
-
Modifies the source Publisher
so that it invokes the given action when it is subscribed from
its subscribers.
- doOnSubscribe(Consumer<? super Disposable>) - Method in class io.reactivex.rxjava3.core.Maybe
-
Calls the shared consumer with the Disposable sent through the onSubscribe for each
MaybeObserver that subscribes to the current Maybe.
- doOnSubscribe(Consumer<? super Disposable>) - Method in class io.reactivex.rxjava3.core.Observable
-
Modifies the source ObservableSource
so that it invokes the given action when it is subscribed from
its subscribers.
- doOnSubscribe(Consumer<? super Disposable>) - Method in class io.reactivex.rxjava3.core.Single
-
Calls the shared consumer with the Disposable sent through the onSubscribe for each
SingleObserver that subscribes to the current Single.
- doOnSubscribe(Consumer<? super Subscription>) - Method in class io.reactivex.rxjava3.parallel.ParallelFlowable
-
Call the specified callback when a 'rail' receives a Subscription from its upstream.
- doOnSuccess(Consumer<? super T>) - Method in class io.reactivex.rxjava3.core.Maybe
-
Calls the shared consumer with the success value sent via onSuccess for each
MaybeObserver that subscribes to the current Maybe.
- doOnSuccess(Consumer<? super T>) - Method in class io.reactivex.rxjava3.core.Single
-
Calls the shared consumer with the success value sent via onSuccess for each
SingleObserver that subscribes to the current Single.
- doOnTerminate(Action) - Method in class io.reactivex.rxjava3.core.Completable
-
Returns a Completable instance that calls the given onTerminate callback just before this Completable
completes normally or with an exception.
- doOnTerminate(Action) - Method in class io.reactivex.rxjava3.core.Flowable
-
Modifies the source Publisher so that it invokes an action when it calls onComplete
or
onError
.
- doOnTerminate(Action) - Method in class io.reactivex.rxjava3.core.Maybe
-
Returns a Maybe instance that calls the given onTerminate callback
just before this Maybe completes normally or with an exception.
- doOnTerminate(Action) - Method in class io.reactivex.rxjava3.core.Observable
-
Modifies the source ObservableSource so that it invokes an action when it calls onComplete
or
onError
.
- doOnTerminate(Action) - Method in class io.reactivex.rxjava3.core.Single
-
Returns a Single instance that calls the given onTerminate callback
just before this Single completes normally or with an exception.
- fail(String) - Method in class io.reactivex.rxjava3.observers.BaseTestConsumer
-
Fail with the given message and add the sequence of errors as suppressed ones.
- filter(Predicate<? super T>) - Method in class io.reactivex.rxjava3.core.Flowable
-
Filters items emitted by a Publisher by only emitting those that satisfy a specified predicate.
- filter(Predicate<? super T>) - Method in class io.reactivex.rxjava3.core.Maybe
-
Filters the success item of the Maybe via a predicate function and emitting it if the predicate
returns true, completing otherwise.
- filter(Predicate<? super T>) - Method in class io.reactivex.rxjava3.core.Observable
-
Filters items emitted by an ObservableSource by only emitting those that satisfy a specified predicate.
- filter(Predicate<? super T>) - Method in class io.reactivex.rxjava3.core.Single
-
Filters the success item of the Single via a predicate function and emitting it if the predicate
returns true, completing otherwise.
- filter(Predicate<? super T>) - Method in class io.reactivex.rxjava3.parallel.ParallelFlowable
-
Filters the source values on each 'rail'.
- filter(Predicate<? super T>, ParallelFailureHandling) - Method in class io.reactivex.rxjava3.parallel.ParallelFlowable
-
Filters the source values on each 'rail' and
handles errors based on the given
ParallelFailureHandling
enumeration value.
- filter(Predicate<? super T>, BiFunction<? super Long, ? super Throwable, ParallelFailureHandling>) - Method in class io.reactivex.rxjava3.parallel.ParallelFlowable
-
Filters the source values on each 'rail' and
handles errors based on the returned value by the handler function.
- first(T) - Method in class io.reactivex.rxjava3.core.Flowable
-
Returns a Single that emits only the very first item emitted by this Flowable, or a default
item if this Flowable completes without emitting anything.
- first(T) - Method in class io.reactivex.rxjava3.core.Observable
-
Returns a Single that emits only the very first item emitted by the source ObservableSource, or a default item
if the source ObservableSource completes without emitting any items.
- firstElement() - Method in class io.reactivex.rxjava3.core.Flowable
-
Returns a Maybe that emits only the very first item emitted by this Flowable or
completes if this Flowable is empty.
- firstElement() - Method in class io.reactivex.rxjava3.core.Observable
-
Returns a Maybe that emits only the very first item emitted by the source ObservableSource, or
completes if the source ObservableSource is empty.
- firstOrError() - Method in class io.reactivex.rxjava3.core.Flowable
-
Returns a Single that emits only the very first item emitted by this Flowable or
signals a
NoSuchElementException
if this Flowable is empty.
- firstOrError() - Method in class io.reactivex.rxjava3.core.Observable
-
Returns a Single that emits only the very first item emitted by this Observable or
signals a
NoSuchElementException
if this Observable is empty.
- flatMap(Function<? super T, ? extends Publisher<? extends R>>) - Method in class io.reactivex.rxjava3.core.Flowable
-
Returns a Flowable that emits items based on applying a function that you supply to each item emitted
by the source Publisher, where that function returns a Publisher, and then merging those resulting
Publishers and emitting the results of this merger.
- flatMap(Function<? super T, ? extends Publisher<? extends R>>, boolean) - Method in class io.reactivex.rxjava3.core.Flowable
-
Returns a Flowable that emits items based on applying a function that you supply to each item emitted
by the source Publisher, where that function returns a Publisher, and then merging those resulting
Publishers and emitting the results of this merger.
- flatMap(Function<? super T, ? extends Publisher<? extends R>>, int) - Method in class io.reactivex.rxjava3.core.Flowable
-
Returns a Flowable that emits items based on applying a function that you supply to each item emitted
by the source Publisher, where that function returns a Publisher, and then merging those resulting
Publishers and emitting the results of this merger, while limiting the maximum number of concurrent
subscriptions to these Publishers.
- flatMap(Function<? super T, ? extends Publisher<? extends R>>, boolean, int) - Method in class io.reactivex.rxjava3.core.Flowable
-
Returns a Flowable that emits items based on applying a function that you supply to each item emitted
by the source Publisher, where that function returns a Publisher, and then merging those resulting
Publishers and emitting the results of this merger, while limiting the maximum number of concurrent
subscriptions to these Publishers.
- flatMap(Function<? super T, ? extends Publisher<? extends R>>, boolean, int, int) - Method in class io.reactivex.rxjava3.core.Flowable
-
Returns a Flowable that emits items based on applying a function that you supply to each item emitted
by the source Publisher, where that function returns a Publisher, and then merging those resulting
Publishers and emitting the results of this merger, while limiting the maximum number of concurrent
subscriptions to these Publishers.
- flatMap(Function<? super T, ? extends Publisher<? extends R>>, Function<? super Throwable, ? extends Publisher<? extends R>>, Supplier<? extends Publisher<? extends R>>) - Method in class io.reactivex.rxjava3.core.Flowable
-
Returns a Flowable that applies a function to each item emitted or notification raised by the source
Publisher and then flattens the Publishers returned from these functions and emits the resulting items.
- flatMap(Function<? super T, ? extends Publisher<? extends R>>, Function<Throwable, ? extends Publisher<? extends R>>, Supplier<? extends Publisher<? extends R>>, int) - Method in class io.reactivex.rxjava3.core.Flowable
-
Returns a Flowable that applies a function to each item emitted or notification raised by the source
Publisher and then flattens the Publishers returned from these functions and emits the resulting items,
while limiting the maximum number of concurrent subscriptions to these Publishers.
- flatMap(Function<? super T, ? extends Publisher<? extends U>>, BiFunction<? super T, ? super U, ? extends R>) - Method in class io.reactivex.rxjava3.core.Flowable
-
Returns a Flowable that emits the results of a specified function to the pair of values emitted by the
source Publisher and a specified collection Publisher.
- flatMap(Function<? super T, ? extends Publisher<? extends U>>, BiFunction<? super T, ? super U, ? extends R>, boolean) - Method in class io.reactivex.rxjava3.core.Flowable
-
Returns a Flowable that emits the results of a specified function to the pair of values emitted by the
source Publisher and a specified collection Publisher.
- flatMap(Function<? super T, ? extends Publisher<? extends U>>, BiFunction<? super T, ? super U, ? extends R>, boolean, int) - Method in class io.reactivex.rxjava3.core.Flowable
-
Returns a Flowable that emits the results of a specified function to the pair of values emitted by the
source Publisher and a specified collection Publisher, while limiting the maximum number of concurrent
subscriptions to these Publishers.
- flatMap(Function<? super T, ? extends Publisher<? extends U>>, BiFunction<? super T, ? super U, ? extends R>, boolean, int, int) - Method in class io.reactivex.rxjava3.core.Flowable
-
Returns a Flowable that emits the results of a specified function to the pair of values emitted by the
source Publisher and a specified collection Publisher, while limiting the maximum number of concurrent
subscriptions to these Publishers.
- flatMap(Function<? super T, ? extends Publisher<? extends U>>, BiFunction<? super T, ? super U, ? extends R>, int) - Method in class io.reactivex.rxjava3.core.Flowable
-
Returns a Flowable that emits the results of a specified function to the pair of values emitted by the
source Publisher and a specified collection Publisher, while limiting the maximum number of concurrent
subscriptions to these Publishers.
- flatMap(Function<? super T, ? extends MaybeSource<? extends R>>) - Method in class io.reactivex.rxjava3.core.Maybe
-
Returns a Maybe that is based on applying a specified function to the item emitted by the source Maybe,
where that function returns a MaybeSource.
- flatMap(Function<? super T, ? extends MaybeSource<? extends R>>, Function<? super Throwable, ? extends MaybeSource<? extends R>>, Supplier<? extends MaybeSource<? extends R>>) - Method in class io.reactivex.rxjava3.core.Maybe
-
Maps the onSuccess, onError or onComplete signals of this Maybe into MaybeSource and emits that
MaybeSource's signals.
- flatMap(Function<? super T, ? extends MaybeSource<? extends U>>, BiFunction<? super T, ? super U, ? extends R>) - Method in class io.reactivex.rxjava3.core.Maybe
-
Returns a Maybe that emits the results of a specified function to the pair of values emitted by the
source Maybe and a specified mapped MaybeSource.
- flatMap(Function<? super T, ? extends ObservableSource<? extends R>>) - Method in class io.reactivex.rxjava3.core.Observable
-
Returns an Observable that emits items based on applying a function that you supply to each item emitted
by the source ObservableSource, where that function returns an ObservableSource, and then merging those resulting
ObservableSources and emitting the results of this merger.
- flatMap(Function<? super T, ? extends ObservableSource<? extends R>>, boolean) - Method in class io.reactivex.rxjava3.core.Observable
-
Returns an Observable that emits items based on applying a function that you supply to each item emitted
by the source ObservableSource, where that function returns an ObservableSource, and then merging those resulting
ObservableSources and emitting the results of this merger.
- flatMap(Function<? super T, ? extends ObservableSource<? extends R>>, boolean, int) - Method in class io.reactivex.rxjava3.core.Observable
-
Returns an Observable that emits items based on applying a function that you supply to each item emitted
by the source ObservableSource, where that function returns an ObservableSource, and then merging those resulting
ObservableSources and emitting the results of this merger, while limiting the maximum number of concurrent
subscriptions to these ObservableSources.
- flatMap(Function<? super T, ? extends ObservableSource<? extends R>>, boolean, int, int) - Method in class io.reactivex.rxjava3.core.Observable
-
Returns an Observable that emits items based on applying a function that you supply to each item emitted
by the source ObservableSource, where that function returns an ObservableSource, and then merging those resulting
ObservableSources and emitting the results of this merger, while limiting the maximum number of concurrent
subscriptions to these ObservableSources.
- flatMap(Function<? super T, ? extends ObservableSource<? extends R>>, Function<? super Throwable, ? extends ObservableSource<? extends R>>, Supplier<? extends ObservableSource<? extends R>>) - Method in class io.reactivex.rxjava3.core.Observable
-
Returns an Observable that applies a function to each item emitted or notification raised by the source
ObservableSource and then flattens the ObservableSources returned from these functions and emits the resulting items.
- flatMap(Function<? super T, ? extends ObservableSource<? extends R>>, Function<Throwable, ? extends ObservableSource<? extends R>>, Supplier<? extends ObservableSource<? extends R>>, int) - Method in class io.reactivex.rxjava3.core.Observable
-
Returns an Observable that applies a function to each item emitted or notification raised by the source
ObservableSource and then flattens the ObservableSources returned from these functions and emits the resulting items,
while limiting the maximum number of concurrent subscriptions to these ObservableSources.
- flatMap(Function<? super T, ? extends ObservableSource<? extends R>>, int) - Method in class io.reactivex.rxjava3.core.Observable
-
Returns an Observable that emits items based on applying a function that you supply to each item emitted
by the source ObservableSource, where that function returns an ObservableSource, and then merging those resulting
ObservableSources and emitting the results of this merger, while limiting the maximum number of concurrent
subscriptions to these ObservableSources.
- flatMap(Function<? super T, ? extends ObservableSource<? extends U>>, BiFunction<? super T, ? super U, ? extends R>) - Method in class io.reactivex.rxjava3.core.Observable
-
Returns an Observable that emits the results of a specified function to the pair of values emitted by the
source ObservableSource and a specified collection ObservableSource.
- flatMap(Function<? super T, ? extends ObservableSource<? extends U>>, BiFunction<? super T, ? super U, ? extends R>, boolean) - Method in class io.reactivex.rxjava3.core.Observable
-
Returns an Observable that emits the results of a specified function to the pair of values emitted by the
source ObservableSource and a specified collection ObservableSource.
- flatMap(Function<? super T, ? extends ObservableSource<? extends U>>, BiFunction<? super T, ? super U, ? extends R>, boolean, int) - Method in class io.reactivex.rxjava3.core.Observable
-
Returns an Observable that emits the results of a specified function to the pair of values emitted by the
source ObservableSource and a specified collection ObservableSource, while limiting the maximum number of concurrent
subscriptions to these ObservableSources.
- flatMap(Function<? super T, ? extends ObservableSource<? extends U>>, BiFunction<? super T, ? super U, ? extends R>, boolean, int, int) - Method in class io.reactivex.rxjava3.core.Observable
-
Returns an Observable that emits the results of a specified function to the pair of values emitted by the
source ObservableSource and a specified collection ObservableSource, while limiting the maximum number of concurrent
subscriptions to these ObservableSources.
- flatMap(Function<? super T, ? extends ObservableSource<? extends U>>, BiFunction<? super T, ? super U, ? extends R>, int) - Method in class io.reactivex.rxjava3.core.Observable
-
Returns an Observable that emits the results of a specified function to the pair of values emitted by the
source ObservableSource and a specified collection ObservableSource, while limiting the maximum number of concurrent
subscriptions to these ObservableSources.
- flatMap(Function<? super T, ? extends SingleSource<? extends R>>) - Method in class io.reactivex.rxjava3.core.Single
-
Returns a Single that is based on applying a specified function to the item emitted by the source Single,
where that function returns a SingleSource.
- flatMap(Function<? super T, ? extends Publisher<? extends R>>) - Method in class io.reactivex.rxjava3.parallel.ParallelFlowable
-
Generates and flattens Publishers on each 'rail'.
- flatMap(Function<? super T, ? extends Publisher<? extends R>>, boolean) - Method in class io.reactivex.rxjava3.parallel.ParallelFlowable
-
Generates and flattens Publishers on each 'rail', optionally delaying errors.
- flatMap(Function<? super T, ? extends Publisher<? extends R>>, boolean, int) - Method in class io.reactivex.rxjava3.parallel.ParallelFlowable
-
Generates and flattens Publishers on each 'rail', optionally delaying errors
and having a total number of simultaneous subscriptions to the inner Publishers.
- flatMap(Function<? super T, ? extends Publisher<? extends R>>, boolean, int, int) - Method in class io.reactivex.rxjava3.parallel.ParallelFlowable
-
Generates and flattens Publishers on each 'rail', optionally delaying errors,
having a total number of simultaneous subscriptions to the inner Publishers
and using the given prefetch amount for the inner Publishers.
- flatMapCompletable(Function<? super T, ? extends CompletableSource>) - Method in class io.reactivex.rxjava3.core.Flowable
-
Maps each element of the upstream Flowable into CompletableSources, subscribes to them and
waits until the upstream and all CompletableSources complete.
- flatMapCompletable(Function<? super T, ? extends CompletableSource>, boolean, int) - Method in class io.reactivex.rxjava3.core.Flowable
-
Maps each element of the upstream Flowable into CompletableSources, subscribes to them and
waits until the upstream and all CompletableSources complete, optionally delaying all errors.
- flatMapCompletable(Function<? super T, ? extends CompletableSource>) - Method in class io.reactivex.rxjava3.core.Maybe
-
Returns a
Completable
that completes based on applying a specified function to the item emitted by the
source
Maybe
, where that function returns a
Completable
.
- flatMapCompletable(Function<? super T, ? extends CompletableSource>) - Method in class io.reactivex.rxjava3.core.Observable
-
Maps each element of the upstream Observable into CompletableSources, subscribes to them and
waits until the upstream and all CompletableSources complete.
- flatMapCompletable(Function<? super T, ? extends CompletableSource>, boolean) - Method in class io.reactivex.rxjava3.core.Observable
-
Maps each element of the upstream Observable into CompletableSources, subscribes to them and
waits until the upstream and all CompletableSources complete, optionally delaying all errors.
- flatMapCompletable(Function<? super T, ? extends CompletableSource>) - Method in class io.reactivex.rxjava3.core.Single
-
Returns a
Completable
that completes based on applying a specified function to the item emitted by the
source
Single
, where that function returns a
Completable
.
- flatMapIterable(Function<? super T, ? extends Iterable<? extends U>>) - Method in class io.reactivex.rxjava3.core.Flowable
-
Returns a Flowable that merges each item emitted by the source Publisher with the values in an
Iterable corresponding to that item that is generated by a selector.
- flatMapIterable(Function<? super T, ? extends Iterable<? extends U>>, int) - Method in class io.reactivex.rxjava3.core.Flowable
-
Returns a Flowable that merges each item emitted by the source Publisher with the values in an
Iterable corresponding to that item that is generated by a selector.
- flatMapIterable(Function<? super T, ? extends Iterable<? extends U>>, BiFunction<? super T, ? super U, ? extends V>) - Method in class io.reactivex.rxjava3.core.Flowable
-
Returns a Flowable that emits the results of applying a function to the pair of values from the source
Publisher and an Iterable corresponding to that item that is generated by a selector.
- flatMapIterable(Function<? super T, ? extends Iterable<? extends U>>, BiFunction<? super T, ? super U, ? extends V>, int) - Method in class io.reactivex.rxjava3.core.Flowable
-
Returns a Flowable that merges each item emitted by the source Publisher with the values in an
Iterable corresponding to that item that is generated by a selector, while limiting the number of concurrent
subscriptions to these Publishers.
- flatMapIterable(Function<? super T, ? extends Iterable<? extends U>>) - Method in class io.reactivex.rxjava3.core.Observable
-
Returns an Observable that merges each item emitted by the source ObservableSource with the values in an
Iterable corresponding to that item that is generated by a selector.
- flatMapIterable(Function<? super T, ? extends Iterable<? extends U>>, BiFunction<? super T, ? super U, ? extends V>) - Method in class io.reactivex.rxjava3.core.Observable
-
Returns an Observable that emits the results of applying a function to the pair of values from the source
ObservableSource and an Iterable corresponding to that item that is generated by a selector.
- flatMapMaybe(Function<? super T, ? extends MaybeSource<? extends R>>) - Method in class io.reactivex.rxjava3.core.Flowable
-
Maps each element of the upstream Flowable into MaybeSources, subscribes to all of them
and merges their onSuccess values, in no particular order, into a single Flowable sequence.
- flatMapMaybe(Function<? super T, ? extends MaybeSource<? extends R>>, boolean, int) - Method in class io.reactivex.rxjava3.core.Flowable
-
Maps each element of the upstream Flowable into MaybeSources, subscribes to at most
maxConcurrency
MaybeSources at a time and merges their onSuccess values,
in no particular order, into a single Flowable sequence, optionally delaying all errors.
- flatMapMaybe(Function<? super T, ? extends MaybeSource<? extends R>>) - Method in class io.reactivex.rxjava3.core.Observable
-
Maps each element of the upstream Observable into MaybeSources, subscribes to all of them
and merges their onSuccess values, in no particular order, into a single Observable sequence.
- flatMapMaybe(Function<? super T, ? extends MaybeSource<? extends R>>, boolean) - Method in class io.reactivex.rxjava3.core.Observable
-
Maps each element of the upstream Observable into MaybeSources, subscribes to them
and merges their onSuccess values, in no particular order, into a single Observable sequence,
optionally delaying all errors.
- flatMapMaybe(Function<? super T, ? extends MaybeSource<? extends R>>) - Method in class io.reactivex.rxjava3.core.Single
-
Returns a Maybe that is based on applying a specified function to the item emitted by the source Single,
where that function returns a MaybeSource.
- flatMapObservable(Function<? super T, ? extends ObservableSource<? extends R>>) - Method in class io.reactivex.rxjava3.core.Maybe
-
Returns an Observable that is based on applying a specified function to the item emitted by the source Maybe,
where that function returns an ObservableSource.
- flatMapObservable(Function<? super T, ? extends ObservableSource<? extends R>>) - Method in class io.reactivex.rxjava3.core.Single
-
Returns an Observable that is based on applying a specified function to the item emitted by the source Single,
where that function returns an ObservableSource.
- flatMapPublisher(Function<? super T, ? extends Publisher<? extends R>>) - Method in class io.reactivex.rxjava3.core.Maybe
-
Returns a Flowable that emits items based on applying a specified function to the item emitted by the
source Maybe, where that function returns a Publisher.
- flatMapPublisher(Function<? super T, ? extends Publisher<? extends R>>) - Method in class io.reactivex.rxjava3.core.Single
-
Returns a Flowable that emits items based on applying a specified function to the item emitted by the
source Single, where that function returns a Publisher.
- flatMapSingle(Function<? super T, ? extends SingleSource<? extends R>>) - Method in class io.reactivex.rxjava3.core.Flowable
-
Maps each element of the upstream Flowable into SingleSources, subscribes to all of them
and merges their onSuccess values, in no particular order, into a single Flowable sequence.
- flatMapSingle(Function<? super T, ? extends SingleSource<? extends R>>, boolean, int) - Method in class io.reactivex.rxjava3.core.Flowable
-
Maps each element of the upstream Flowable into SingleSources, subscribes to at most
maxConcurrency
SingleSources at a time and merges their onSuccess values,
in no particular order, into a single Flowable sequence, optionally delaying all errors.
- flatMapSingle(Function<? super T, ? extends SingleSource<? extends R>>) - Method in class io.reactivex.rxjava3.core.Maybe
-
Returns a
Single
based on applying a specified function to the item emitted by the
source
Maybe
, where that function returns a
Single
.
- flatMapSingle(Function<? super T, ? extends SingleSource<? extends R>>) - Method in class io.reactivex.rxjava3.core.Observable
-
Maps each element of the upstream Observable into SingleSources, subscribes to all of them
and merges their onSuccess values, in no particular order, into a single Observable sequence.
- flatMapSingle(Function<? super T, ? extends SingleSource<? extends R>>, boolean) - Method in class io.reactivex.rxjava3.core.Observable
-
Maps each element of the upstream Observable into SingleSources, subscribes to them
and merges their onSuccess values, in no particular order, into a single Observable sequence,
optionally delaying all errors.
- flatMapSingleElement(Function<? super T, ? extends SingleSource<? extends R>>) - Method in class io.reactivex.rxjava3.core.Maybe
-
Returns a
Maybe
based on applying a specified function to the item emitted by the
source
Maybe
, where that function returns a
Single
.
- flattenAsFlowable(Function<? super T, ? extends Iterable<? extends U>>) - Method in class io.reactivex.rxjava3.core.Maybe
-
Maps the success value of the upstream
Maybe
into an
Iterable
and emits its items as a
Flowable
sequence.
- flattenAsFlowable(Function<? super T, ? extends Iterable<? extends U>>) - Method in class io.reactivex.rxjava3.core.Single
-
- flattenAsObservable(Function<? super T, ? extends Iterable<? extends U>>) - Method in class io.reactivex.rxjava3.core.Maybe
-
- flattenAsObservable(Function<? super T, ? extends Iterable<? extends U>>) - Method in class io.reactivex.rxjava3.core.Single
-
- Flowable<T> - Class in io.reactivex.rxjava3.core
-
The Flowable class that implements the
Reactive Streams
Pattern and offers factory methods, intermediate operators and the ability to consume reactive dataflows.
- Flowable() - Constructor for class io.reactivex.rxjava3.core.Flowable
-
- FlowableConverter<T,R> - Interface in io.reactivex.rxjava3.core
-
- FlowableEmitter<T> - Interface in io.reactivex.rxjava3.core
-
Abstraction over a Reactive Streams
Subscriber
that allows associating
a resource with it and exposes the current number of downstream
requested amount.
- FlowableOnSubscribe<T> - Interface in io.reactivex.rxjava3.core
-
A functional interface that has a
subscribe()
method that receives
an instance of a
FlowableEmitter
instance that allows pushing
events in a backpressure-safe and cancellation-safe manner.
- FlowableOperator<Downstream,Upstream> - Interface in io.reactivex.rxjava3.core
-
Interface to map/wrap a downstream subscriber to an upstream subscriber.
- FlowableProcessor<T> - Class in io.reactivex.rxjava3.processors
-
Represents a Subscriber and a Flowable (Publisher) at the same time, allowing
multicasting events from a single source to multiple child Subscribers.
- FlowableProcessor() - Constructor for class io.reactivex.rxjava3.processors.FlowableProcessor
-
- FlowableSubscriber<T> - Interface in io.reactivex.rxjava3.core
-
Represents a Reactive-Streams inspired Subscriber that is RxJava 2 only
and weakens rules §1.3 and §3.9 of the specification for gaining performance.
- FlowableTransformer<Upstream,Downstream> - Interface in io.reactivex.rxjava3.core
-
Interface to compose Flowables.
- forEach(Consumer<? super T>) - Method in class io.reactivex.rxjava3.core.Flowable
-
Subscribes to the
Publisher
and receives notifications for each element.
- forEach(Consumer<? super T>) - Method in class io.reactivex.rxjava3.core.Observable
-
- forEachWhile(Predicate<? super T>) - Method in class io.reactivex.rxjava3.core.Flowable
-
Subscribes to the
Publisher
and receives notifications for each element until the
onNext Predicate returns false.
- forEachWhile(Predicate<? super T>, Consumer<? super Throwable>) - Method in class io.reactivex.rxjava3.core.Flowable
-
Subscribes to the
Publisher
and receives notifications for each element and error events until the
onNext Predicate returns false.
- forEachWhile(Predicate<? super T>, Consumer<? super Throwable>, Action) - Method in class io.reactivex.rxjava3.core.Flowable
-
Subscribes to the
Publisher
and receives notifications for each element and the terminal events until the
onNext Predicate returns false.
- forEachWhile(Predicate<? super T>) - Method in class io.reactivex.rxjava3.core.Observable
-
Subscribes to the
ObservableSource
and receives notifications for each element until the
onNext Predicate returns false.
- forEachWhile(Predicate<? super T>, Consumer<? super Throwable>) - Method in class io.reactivex.rxjava3.core.Observable
-
Subscribes to the
ObservableSource
and receives notifications for each element and error events until the
onNext Predicate returns false.
- forEachWhile(Predicate<? super T>, Consumer<? super Throwable>, Action) - Method in class io.reactivex.rxjava3.core.Observable
-
Subscribes to the
ObservableSource
and receives notifications for each element and the terminal events until the
onNext Predicate returns false.
- from(Publisher<? extends T>) - Static method in class io.reactivex.rxjava3.parallel.ParallelFlowable
-
Take a Publisher and prepare to consume it on multiple 'rails' (number of CPUs)
in a round-robin fashion.
- from(Publisher<? extends T>, int) - Static method in class io.reactivex.rxjava3.parallel.ParallelFlowable
-
Take a Publisher and prepare to consume it on parallelism number of 'rails' in a round-robin fashion.
- from(Publisher<? extends T>, int, int) - Static method in class io.reactivex.rxjava3.parallel.ParallelFlowable
-
Take a Publisher and prepare to consume it on parallelism number of 'rails' ,
possibly ordered and round-robin fashion and use custom prefetch amount and queue
for dealing with the source Publisher's values.
- from(Executor) - Static method in class io.reactivex.rxjava3.schedulers.Schedulers
-
Wraps an
Executor
into a new Scheduler instance and delegates
schedule()
calls to it.
- from(Executor, boolean) - Static method in class io.reactivex.rxjava3.schedulers.Schedulers
-
Wraps an
Executor
into a new Scheduler instance and delegates
schedule()
calls to it.
- fromAction(Action) - Static method in class io.reactivex.rxjava3.core.Completable
-
Returns a Completable instance that runs the given Action for each subscriber and
emits either an unchecked exception or simply completes.
- fromAction(Action) - Static method in class io.reactivex.rxjava3.core.Maybe
-
Returns a Maybe instance that runs the given Action for each subscriber and
emits either its exception or simply completes.
- fromAction(Action) - Static method in class io.reactivex.rxjava3.disposables.Disposables
-
Construct a Disposable by wrapping a Action that is
executed exactly once when the Disposable is disposed.
- fromArray(T...) - Static method in class io.reactivex.rxjava3.core.Flowable
-
Converts an Array into a Publisher that emits the items in the Array.
- fromArray(T...) - Static method in class io.reactivex.rxjava3.core.Observable
-
Converts an Array into an ObservableSource that emits the items in the Array.
- fromArray(Publisher<T>...) - Static method in class io.reactivex.rxjava3.parallel.ParallelFlowable
-
Wraps multiple Publishers into a ParallelFlowable which runs them
in parallel and unordered.
- fromCallable(Callable<?>) - Static method in class io.reactivex.rxjava3.core.Completable
-
Returns a Completable which when subscribed, executes the callable function, ignores its
normal result and emits onError or onComplete only.
- fromCallable(Callable<? extends T>) - Static method in class io.reactivex.rxjava3.core.Flowable
-
Returns a Flowable that, when a Subscriber subscribes to it, invokes a function you specify and then
emits the value returned from that function.
- fromCallable(Callable<? extends T>) - Static method in class io.reactivex.rxjava3.core.Maybe
-
Returns a
Maybe
that invokes the given
Callable
for each individual
MaybeObserver
that
subscribes and emits the resulting non-null item via
onSuccess
while
considering a
null
result from the
Callable
as indication for valueless completion
via
onComplete
.
- fromCallable(Callable<? extends T>) - Static method in class io.reactivex.rxjava3.core.Observable
-
Returns an Observable that, when an observer subscribes to it, invokes a function you specify and then
emits the value returned from that function.
- fromCallable(Callable<? extends T>) - Static method in class io.reactivex.rxjava3.core.Single
-
Returns a
Single
that invokes passed function and emits its result for each new SingleObserver that subscribes.
- fromCompletable(CompletableSource) - Static method in class io.reactivex.rxjava3.core.Maybe
-
Wraps a CompletableSource into a Maybe.
- fromFuture(Future<?>) - Static method in class io.reactivex.rxjava3.core.Completable
-
Returns a Completable instance that reacts to the termination of the given Future in a blocking fashion.
- fromFuture(Future<? extends T>) - Static method in class io.reactivex.rxjava3.core.Flowable
-
Converts a
Future
into a Publisher.
- fromFuture(Future<? extends T>, long, TimeUnit) - Static method in class io.reactivex.rxjava3.core.Flowable
-
Converts a
Future
into a Publisher, with a timeout on the Future.
- fromFuture(Future<? extends T>, long, TimeUnit, Scheduler) - Static method in class io.reactivex.rxjava3.core.Flowable
-
Converts a
Future
into a Publisher, with a timeout on the Future.
- fromFuture(Future<? extends T>, Scheduler) - Static method in class io.reactivex.rxjava3.core.Flowable
-
- fromFuture(Future<? extends T>) - Static method in class io.reactivex.rxjava3.core.Maybe
-
Converts a
Future
into a Maybe, treating a null result as an indication of emptiness.
- fromFuture(Future<? extends T>, long, TimeUnit) - Static method in class io.reactivex.rxjava3.core.Maybe
-
Converts a
Future
into a Maybe, with a timeout on the Future.
- fromFuture(Future<? extends T>) - Static method in class io.reactivex.rxjava3.core.Observable
-
Converts a
Future
into an ObservableSource.
- fromFuture(Future<? extends T>, long, TimeUnit) - Static method in class io.reactivex.rxjava3.core.Observable
-
Converts a
Future
into an ObservableSource, with a timeout on the Future.
- fromFuture(Future<? extends T>, long, TimeUnit, Scheduler) - Static method in class io.reactivex.rxjava3.core.Observable
-
Converts a
Future
into an ObservableSource, with a timeout on the Future.
- fromFuture(Future<? extends T>, Scheduler) - Static method in class io.reactivex.rxjava3.core.Observable
-
Converts a
Future
, operating on a specified
Scheduler
, into an ObservableSource.
- fromFuture(Future<? extends T>) - Static method in class io.reactivex.rxjava3.core.Single
-
Converts a
Future
into a
Single
.
- fromFuture(Future<? extends T>, long, TimeUnit) - Static method in class io.reactivex.rxjava3.core.Single
-
Converts a
Future
into a
Single
, with a timeout on the Future.
- fromFuture(Future<? extends T>, long, TimeUnit, Scheduler) - Static method in class io.reactivex.rxjava3.core.Single
-
Converts a
Future
into a
Single
, with a timeout on the Future.
- fromFuture(Future<? extends T>, Scheduler) - Static method in class io.reactivex.rxjava3.core.Single
-
- fromFuture(Future<?>) - Static method in class io.reactivex.rxjava3.disposables.Disposables
-
Construct a Disposable by wrapping a Future that is
cancelled exactly once when the Disposable is disposed.
- fromFuture(Future<?>, boolean) - Static method in class io.reactivex.rxjava3.disposables.Disposables
-
Construct a Disposable by wrapping a Future that is
cancelled exactly once when the Disposable is disposed.
- fromIterable(Iterable<? extends T>) - Static method in class io.reactivex.rxjava3.core.Flowable
-
Converts an
Iterable
sequence into a Publisher that emits the items in the sequence.
- fromIterable(Iterable<? extends T>) - Static method in class io.reactivex.rxjava3.core.Observable
-
Converts an
Iterable
sequence into an ObservableSource that emits the items in the sequence.
- fromMaybe(MaybeSource<T>) - Static method in class io.reactivex.rxjava3.core.Completable
-
Returns a Completable instance that when subscribed to, subscribes to the Maybe
instance and
emits a completion event if the maybe emits onSuccess
/onComplete
or forwards any
onError
events.
- fromObservable(ObservableSource<T>) - Static method in class io.reactivex.rxjava3.core.Completable
-
Returns a Completable instance that subscribes to the given Observable, ignores all values and
emits only the terminal event.
- fromObservable(ObservableSource<? extends T>) - Static method in class io.reactivex.rxjava3.core.Single
-
Wraps a specific ObservableSource into a Single and signals its single element or error.
- fromPublisher(Publisher<T>) - Static method in class io.reactivex.rxjava3.core.Completable
-
Returns a Completable instance that subscribes to the given publisher, ignores all values and
emits only the terminal event.
- fromPublisher(Publisher<? extends T>) - Static method in class io.reactivex.rxjava3.core.Flowable
-
Converts an arbitrary Reactive Streams Publisher into a Flowable if not already a
Flowable.
- fromPublisher(Publisher<? extends T>) - Static method in class io.reactivex.rxjava3.core.Observable
-
Converts an arbitrary Reactive-Streams Publisher into an Observable.
- fromPublisher(Publisher<? extends T>) - Static method in class io.reactivex.rxjava3.core.Single
-
Wraps a specific Publisher into a Single and signals its single element or error.
- fromRunnable(Runnable) - Static method in class io.reactivex.rxjava3.core.Completable
-
Returns a Completable instance that runs the given Runnable for each subscriber and
emits either its exception or simply completes.
- fromRunnable(Runnable) - Static method in class io.reactivex.rxjava3.core.Maybe
-
Returns a Maybe instance that runs the given Action for each subscriber and
emits either its exception or simply completes.
- fromRunnable(Runnable) - Static method in class io.reactivex.rxjava3.disposables.Disposables
-
Construct a Disposable by wrapping a Runnable that is
executed exactly once when the Disposable is disposed.
- fromSingle(SingleSource<T>) - Static method in class io.reactivex.rxjava3.core.Completable
-
Returns a Completable instance that when subscribed to, subscribes to the Single instance and
emits a completion event if the single emits onSuccess or forwards any onError events.
- fromSingle(SingleSource<T>) - Static method in class io.reactivex.rxjava3.core.Maybe
-
Wraps a SingleSource into a Maybe.
- fromSubscription(Subscription) - Static method in class io.reactivex.rxjava3.disposables.Disposables
-
Construct a Disposable by wrapping a Subscription that is
cancelled exactly once when the Disposable is disposed.
- fromSupplier(Supplier<?>) - Static method in class io.reactivex.rxjava3.core.Completable
-
Returns a Completable which when subscribed, executes the supplier function, ignores its
normal result and emits onError or onComplete only.
- fromSupplier(Supplier<? extends T>) - Static method in class io.reactivex.rxjava3.core.Flowable
-
Returns a Flowable that, when a Subscriber subscribes to it, invokes a supplier function you specify and then
emits the value returned from that function.
- fromSupplier(Supplier<? extends T>) - Static method in class io.reactivex.rxjava3.core.Maybe
-
Returns a
Maybe
that invokes the given
Supplier
for each individual
MaybeObserver
that
subscribes and emits the resulting non-null item via
onSuccess
while
considering a
null
result from the
Supplier
as indication for valueless completion
via
onComplete
.
- fromSupplier(Supplier<? extends T>) - Static method in class io.reactivex.rxjava3.core.Observable
-
Returns an Observable that, when an observer subscribes to it, invokes a supplier function you specify and then
emits the value returned from that function.
- fromSupplier(Supplier<? extends T>) - Static method in class io.reactivex.rxjava3.core.Single
-
Returns a
Single
that invokes passed supplierfunction and emits its result
for each new SingleObserver that subscribes.
- Function<T,R> - Interface in io.reactivex.rxjava3.functions
-
A functional interface that takes a value and returns another value, possibly with a
different type and allows throwing a checked exception.
- Function3<T1,T2,T3,R> - Interface in io.reactivex.rxjava3.functions
-
A functional interface (callback) that computes a value based on multiple input values.
- Function4<T1,T2,T3,T4,R> - Interface in io.reactivex.rxjava3.functions
-
A functional interface (callback) that computes a value based on multiple input values.
- Function5<T1,T2,T3,T4,T5,R> - Interface in io.reactivex.rxjava3.functions
-
A functional interface (callback) that computes a value based on multiple input values.
- Function6<T1,T2,T3,T4,T5,T6,R> - Interface in io.reactivex.rxjava3.functions
-
A functional interface (callback) that computes a value based on multiple input values.
- Function7<T1,T2,T3,T4,T5,T6,T7,R> - Interface in io.reactivex.rxjava3.functions
-
A functional interface (callback) that computes a value based on multiple input values.
- Function8<T1,T2,T3,T4,T5,T6,T7,T8,R> - Interface in io.reactivex.rxjava3.functions
-
A functional interface (callback) that computes a value based on multiple input values.
- Function9<T1,T2,T3,T4,T5,T6,T7,T8,T9,R> - Interface in io.reactivex.rxjava3.functions
-
A functional interface (callback) that computes a value based on multiple input values.
- map(Function<? super T, ? extends R>) - Method in class io.reactivex.rxjava3.core.Flowable
-
Returns a Flowable that applies a specified function to each item emitted by the source Publisher and
emits the results of these function applications.
- map(Function<? super T, ? extends R>) - Method in class io.reactivex.rxjava3.core.Maybe
-
Returns a Maybe that applies a specified function to the item emitted by the source Maybe and
emits the result of this function application.
- map(Function<? super T, ? extends R>) - Method in class io.reactivex.rxjava3.core.Observable
-
Returns an Observable that applies a specified function to each item emitted by the source ObservableSource and
emits the results of these function applications.
- map(Function<? super T, ? extends R>) - Method in class io.reactivex.rxjava3.core.Single
-
Returns a Single that applies a specified function to the item emitted by the source Single and
emits the result of this function application.
- map(Function<? super T, ? extends R>) - Method in class io.reactivex.rxjava3.parallel.ParallelFlowable
-
Maps the source values on each 'rail' to another value.
- map(Function<? super T, ? extends R>, ParallelFailureHandling) - Method in class io.reactivex.rxjava3.parallel.ParallelFlowable
-
Maps the source values on each 'rail' to another value and
handles errors based on the given
ParallelFailureHandling
enumeration value.
- map(Function<? super T, ? extends R>, BiFunction<? super Long, ? super Throwable, ParallelFailureHandling>) - Method in class io.reactivex.rxjava3.parallel.ParallelFlowable
-
Maps the source values on each 'rail' to another value and
handles errors based on the returned value by the handler function.
- materialize() - Method in class io.reactivex.rxjava3.core.Completable
-
Maps the signal types of this Completable into a
Notification
of the same kind
and emits it as a single success value to downstream.
- materialize() - Method in class io.reactivex.rxjava3.core.Flowable
-
Returns a Flowable that represents all of the emissions
and notifications from the source
Publisher into emissions marked with their original types within
Notification
objects.
- materialize() - Method in class io.reactivex.rxjava3.core.Maybe
-
Maps the signal types of this Maybe into a
Notification
of the same kind
and emits it as a single success value to downstream.
- materialize() - Method in class io.reactivex.rxjava3.core.Observable
-
Returns an Observable that represents all of the emissions
and notifications from the source
ObservableSource into emissions marked with their original types within
Notification
objects.
- materialize() - Method in class io.reactivex.rxjava3.core.Single
-
Maps the signal types of this Single into a
Notification
of the same kind
and emits it as a single success value to downstream.
- Maybe<T> - Class in io.reactivex.rxjava3.core
-
The Maybe
class represents a deferred computation and emission of a single value, no value at all or an exception.
- Maybe() - Constructor for class io.reactivex.rxjava3.core.Maybe
-
- MaybeConverter<T,R> - Interface in io.reactivex.rxjava3.core
-
- MaybeEmitter<T> - Interface in io.reactivex.rxjava3.core
-
Abstraction over an RxJava
MaybeObserver
that allows associating
a resource with it.
- MaybeObserver<T> - Interface in io.reactivex.rxjava3.core
-
Provides a mechanism for receiving push-based notification of a single value, an error or completion without any value.
- MaybeOnSubscribe<T> - Interface in io.reactivex.rxjava3.core
-
A functional interface that has a
subscribe()
method that receives
an instance of a
MaybeEmitter
instance that allows pushing
an event in a cancellation-safe manner.
- MaybeOperator<Downstream,Upstream> - Interface in io.reactivex.rxjava3.core
-
Interface to map/wrap a downstream observer to an upstream observer.
- MaybeSource<T> - Interface in io.reactivex.rxjava3.core
-
- MaybeSubject<T> - Class in io.reactivex.rxjava3.subjects
-
Represents a hot Maybe-like source and consumer of events similar to Subjects.
- MaybeTransformer<Upstream,Downstream> - Interface in io.reactivex.rxjava3.core
-
Interface to compose Maybes.
- merge(Iterable<? extends CompletableSource>) - Static method in class io.reactivex.rxjava3.core.Completable
-
Returns a Completable instance that subscribes to all sources at once and
completes only when all source Completables complete or one of them emits an error.
- merge(Publisher<? extends CompletableSource>) - Static method in class io.reactivex.rxjava3.core.Completable
-
Returns a Completable instance that subscribes to all sources at once and
completes only when all source Completables complete or one of them emits an error.
- merge(Publisher<? extends CompletableSource>, int) - Static method in class io.reactivex.rxjava3.core.Completable
-
Returns a Completable instance that keeps subscriptions to a limited number of sources at once and
completes only when all source Completables complete or one of them emits an error.
- merge(Iterable<? extends Publisher<? extends T>>, int, int) - Static method in class io.reactivex.rxjava3.core.Flowable
-
Flattens an Iterable of Publishers into one Publisher, without any transformation, while limiting the
number of concurrent subscriptions to these Publishers.
- merge(Iterable<? extends Publisher<? extends T>>) - Static method in class io.reactivex.rxjava3.core.Flowable
-
Flattens an Iterable of Publishers into one Publisher, without any transformation.
- merge(Iterable<? extends Publisher<? extends T>>, int) - Static method in class io.reactivex.rxjava3.core.Flowable
-
Flattens an Iterable of Publishers into one Publisher, without any transformation, while limiting the
number of concurrent subscriptions to these Publishers.
- merge(Publisher<? extends Publisher<? extends T>>) - Static method in class io.reactivex.rxjava3.core.Flowable
-
Flattens a Publisher that emits Publishers into a single Publisher that emits the items emitted by
those Publishers, without any transformation.
- merge(Publisher<? extends Publisher<? extends T>>, int) - Static method in class io.reactivex.rxjava3.core.Flowable
-
Flattens a Publisher that emits Publishers into a single Publisher that emits the items emitted by
those Publishers, without any transformation, while limiting the maximum number of concurrent
subscriptions to these Publishers.
- merge(Publisher<? extends T>, Publisher<? extends T>) - Static method in class io.reactivex.rxjava3.core.Flowable
-
Flattens two Publishers into a single Publisher, without any transformation.
- merge(Publisher<? extends T>, Publisher<? extends T>, Publisher<? extends T>) - Static method in class io.reactivex.rxjava3.core.Flowable
-
Flattens three Publishers into a single Publisher, without any transformation.
- merge(Publisher<? extends T>, Publisher<? extends T>, Publisher<? extends T>, Publisher<? extends T>) - Static method in class io.reactivex.rxjava3.core.Flowable
-
Flattens four Publishers into a single Publisher, without any transformation.
- merge(Iterable<? extends MaybeSource<? extends T>>) - Static method in class io.reactivex.rxjava3.core.Maybe
-
Merges an Iterable sequence of MaybeSource instances into a single Flowable sequence,
running all MaybeSources at once.
- merge(Publisher<? extends MaybeSource<? extends T>>) - Static method in class io.reactivex.rxjava3.core.Maybe
-
Merges a Flowable sequence of MaybeSource instances into a single Flowable sequence,
running all MaybeSources at once.
- merge(Publisher<? extends MaybeSource<? extends T>>, int) - Static method in class io.reactivex.rxjava3.core.Maybe
-
Merges a Flowable sequence of MaybeSource instances into a single Flowable sequence,
running at most maxConcurrency MaybeSources at once.
- merge(MaybeSource<? extends MaybeSource<? extends T>>) - Static method in class io.reactivex.rxjava3.core.Maybe
-
Flattens a MaybeSource
that emits a MaybeSource
into a single MaybeSource
that emits the item
emitted by the nested MaybeSource
, without any transformation.
- merge(MaybeSource<? extends T>, MaybeSource<? extends T>) - Static method in class io.reactivex.rxjava3.core.Maybe
-
Flattens two MaybeSources into a single Flowable, without any transformation.
- merge(MaybeSource<? extends T>, MaybeSource<? extends T>, MaybeSource<? extends T>) - Static method in class io.reactivex.rxjava3.core.Maybe
-
Flattens three MaybeSources into a single Flowable, without any transformation.
- merge(MaybeSource<? extends T>, MaybeSource<? extends T>, MaybeSource<? extends T>, MaybeSource<? extends T>) - Static method in class io.reactivex.rxjava3.core.Maybe
-
Flattens four MaybeSources into a single Flowable, without any transformation.
- merge(Iterable<? extends ObservableSource<? extends T>>, int, int) - Static method in class io.reactivex.rxjava3.core.Observable
-
Flattens an Iterable of ObservableSources into one ObservableSource, without any transformation, while limiting the
number of concurrent subscriptions to these ObservableSources.
- merge(Iterable<? extends ObservableSource<? extends T>>) - Static method in class io.reactivex.rxjava3.core.Observable
-
Flattens an Iterable of ObservableSources into one ObservableSource, without any transformation.
- merge(Iterable<? extends ObservableSource<? extends T>>, int) - Static method in class io.reactivex.rxjava3.core.Observable
-
Flattens an Iterable of ObservableSources into one ObservableSource, without any transformation, while limiting the
number of concurrent subscriptions to these ObservableSources.
- merge(ObservableSource<? extends ObservableSource<? extends T>>) - Static method in class io.reactivex.rxjava3.core.Observable
-
Flattens an ObservableSource that emits ObservableSources into a single ObservableSource that emits the items emitted by
those ObservableSources, without any transformation.
- merge(ObservableSource<? extends ObservableSource<? extends T>>, int) - Static method in class io.reactivex.rxjava3.core.Observable
-
Flattens an ObservableSource that emits ObservableSources into a single ObservableSource that emits the items emitted by
those ObservableSources, without any transformation, while limiting the maximum number of concurrent
subscriptions to these ObservableSources.
- merge(ObservableSource<? extends T>, ObservableSource<? extends T>) - Static method in class io.reactivex.rxjava3.core.Observable
-
Flattens two ObservableSources into a single ObservableSource, without any transformation.
- merge(ObservableSource<? extends T>, ObservableSource<? extends T>, ObservableSource<? extends T>) - Static method in class io.reactivex.rxjava3.core.Observable
-
Flattens three ObservableSources into a single ObservableSource, without any transformation.
- merge(ObservableSource<? extends T>, ObservableSource<? extends T>, ObservableSource<? extends T>, ObservableSource<? extends T>) - Static method in class io.reactivex.rxjava3.core.Observable
-
Flattens four ObservableSources into a single ObservableSource, without any transformation.
- merge(Iterable<? extends SingleSource<? extends T>>) - Static method in class io.reactivex.rxjava3.core.Single
-
Merges an Iterable sequence of SingleSource instances into a single Flowable sequence,
running all SingleSources at once.
- merge(Publisher<? extends SingleSource<? extends T>>) - Static method in class io.reactivex.rxjava3.core.Single
-
Merges a Flowable sequence of SingleSource instances into a single Flowable sequence,
running all SingleSources at once.
- merge(SingleSource<? extends SingleSource<? extends T>>) - Static method in class io.reactivex.rxjava3.core.Single
-
Flattens a Single
that emits a Single
into a single Single
that emits the item
emitted by the nested Single
, without any transformation.
- merge(SingleSource<? extends T>, SingleSource<? extends T>) - Static method in class io.reactivex.rxjava3.core.Single
-
Flattens two Singles into a single Flowable, without any transformation.
- merge(SingleSource<? extends T>, SingleSource<? extends T>, SingleSource<? extends T>) - Static method in class io.reactivex.rxjava3.core.Single
-
Flattens three Singles into a single Flowable, without any transformation.
- merge(SingleSource<? extends T>, SingleSource<? extends T>, SingleSource<? extends T>, SingleSource<? extends T>) - Static method in class io.reactivex.rxjava3.core.Single
-
Flattens four Singles into a single Flowable, without any transformation.
- mergeArray(CompletableSource...) - Static method in class io.reactivex.rxjava3.core.Completable
-
Returns a Completable instance that subscribes to all sources at once and
completes only when all source Completables complete or one of them emits an error.
- mergeArray(int, int, Publisher<? extends T>...) - Static method in class io.reactivex.rxjava3.core.Flowable
-
Flattens an Iterable of Publishers into one Publisher, without any transformation, while limiting the
number of concurrent subscriptions to these Publishers.
- mergeArray(Publisher<? extends T>...) - Static method in class io.reactivex.rxjava3.core.Flowable
-
Flattens an Array of Publishers into one Publisher, without any transformation.
- mergeArray(MaybeSource<? extends T>...) - Static method in class io.reactivex.rxjava3.core.Maybe
-
Merges an array sequence of MaybeSource instances into a single Flowable sequence,
running all MaybeSources at once.
- mergeArray(int, int, ObservableSource<? extends T>...) - Static method in class io.reactivex.rxjava3.core.Observable
-
Flattens an Iterable of ObservableSources into one ObservableSource, without any transformation, while limiting the
number of concurrent subscriptions to these ObservableSources.
- mergeArray(ObservableSource<? extends T>...) - Static method in class io.reactivex.rxjava3.core.Observable
-
Flattens an Array of ObservableSources into one ObservableSource, without any transformation.
- mergeArrayDelayError(CompletableSource...) - Static method in class io.reactivex.rxjava3.core.Completable
-
Returns a CompletableConsumable that subscribes to all Completables in the source array and delays
any error emitted by either the sources observable or any of the inner Completables until all of
them terminate in a way or another.
- mergeArrayDelayError(int, int, Publisher<? extends T>...) - Static method in class io.reactivex.rxjava3.core.Flowable
-
Flattens an array of Publishers into one Publisher, in a way that allows a Subscriber to receive all
successfully emitted items from each of the source Publishers without being interrupted by an error
notification from one of them, while limiting the number of concurrent subscriptions to these Publishers.
- mergeArrayDelayError(Publisher<? extends T>...) - Static method in class io.reactivex.rxjava3.core.Flowable
-
Flattens an array of Publishers into one Flowable, in a way that allows a Subscriber to receive all
successfully emitted items from each of the source Publishers without being interrupted by an error
notification from one of them.
- mergeArrayDelayError(MaybeSource<? extends T>...) - Static method in class io.reactivex.rxjava3.core.Maybe
-
Flattens an array of MaybeSources into one Flowable, in a way that allows a Subscriber to receive all
successfully emitted items from each of the source MaybeSources without being interrupted by an error
notification from one of them.
- mergeArrayDelayError(int, int, ObservableSource<? extends T>...) - Static method in class io.reactivex.rxjava3.core.Observable
-
Flattens an array of ObservableSources into one ObservableSource, in a way that allows an Observer to receive all
successfully emitted items from each of the source ObservableSources without being interrupted by an error
notification from one of them, while limiting the number of concurrent subscriptions to these ObservableSources.
- mergeArrayDelayError(ObservableSource<? extends T>...) - Static method in class io.reactivex.rxjava3.core.Observable
-
Flattens an Iterable of ObservableSources into one ObservableSource, in a way that allows an Observer to receive all
successfully emitted items from each of the source ObservableSources without being interrupted by an error
notification from one of them.
- mergeDelayError(Iterable<? extends CompletableSource>) - Static method in class io.reactivex.rxjava3.core.Completable
-
Returns a Completable that subscribes to all Completables in the source sequence and delays
any error emitted by either the sources observable or any of the inner Completables until all of
them terminate in a way or another.
- mergeDelayError(Publisher<? extends CompletableSource>) - Static method in class io.reactivex.rxjava3.core.Completable
-
Returns a Completable that subscribes to all Completables in the source sequence and delays
any error emitted by either the sources observable or any of the inner Completables until all of
them terminate in a way or another.
- mergeDelayError(Publisher<? extends CompletableSource>, int) - Static method in class io.reactivex.rxjava3.core.Completable
-
Returns a Completable that subscribes to a limited number of inner Completables at once in
the source sequence and delays any error emitted by either the sources
observable or any of the inner Completables until all of
them terminate in a way or another.
- mergeDelayError(Iterable<? extends Publisher<? extends T>>) - Static method in class io.reactivex.rxjava3.core.Flowable
-
Flattens an Iterable of Publishers into one Publisher, in a way that allows a Subscriber to receive all
successfully emitted items from each of the source Publishers without being interrupted by an error
notification from one of them.
- mergeDelayError(Iterable<? extends Publisher<? extends T>>, int, int) - Static method in class io.reactivex.rxjava3.core.Flowable
-
Flattens an Iterable of Publishers into one Publisher, in a way that allows a Subscriber to receive all
successfully emitted items from each of the source Publishers without being interrupted by an error
notification from one of them, while limiting the number of concurrent subscriptions to these Publishers.
- mergeDelayError(Iterable<? extends Publisher<? extends T>>, int) - Static method in class io.reactivex.rxjava3.core.Flowable
-
Flattens an Iterable of Publishers into one Publisher, in a way that allows a Subscriber to receive all
successfully emitted items from each of the source Publishers without being interrupted by an error
notification from one of them, while limiting the number of concurrent subscriptions to these Publishers.
- mergeDelayError(Publisher<? extends Publisher<? extends T>>) - Static method in class io.reactivex.rxjava3.core.Flowable
-
Flattens a Publisher that emits Publishers into one Publisher, in a way that allows a Subscriber to
receive all successfully emitted items from all of the source Publishers without being interrupted by
an error notification from one of them.
- mergeDelayError(Publisher<? extends Publisher<? extends T>>, int) - Static method in class io.reactivex.rxjava3.core.Flowable
-
Flattens a Publisher that emits Publishers into one Publisher, in a way that allows a Subscriber to
receive all successfully emitted items from all of the source Publishers without being interrupted by
an error notification from one of them, while limiting the
number of concurrent subscriptions to these Publishers.
- mergeDelayError(Publisher<? extends T>, Publisher<? extends T>) - Static method in class io.reactivex.rxjava3.core.Flowable
-
Flattens two Publishers into one Publisher, in a way that allows a Subscriber to receive all
successfully emitted items from each of the source Publishers without being interrupted by an error
notification from one of them.
- mergeDelayError(Publisher<? extends T>, Publisher<? extends T>, Publisher<? extends T>) - Static method in class io.reactivex.rxjava3.core.Flowable
-
Flattens three Publishers into one Publisher, in a way that allows a Subscriber to receive all
successfully emitted items from all of the source Publishers without being interrupted by an error
notification from one of them.
- mergeDelayError(Publisher<? extends T>, Publisher<? extends T>, Publisher<? extends T>, Publisher<? extends T>) - Static method in class io.reactivex.rxjava3.core.Flowable
-
Flattens four Publishers into one Publisher, in a way that allows a Subscriber to receive all
successfully emitted items from all of the source Publishers without being interrupted by an error
notification from one of them.
- mergeDelayError(Iterable<? extends MaybeSource<? extends T>>) - Static method in class io.reactivex.rxjava3.core.Maybe
-
Flattens an Iterable of MaybeSources into one Flowable, in a way that allows a Subscriber to receive all
successfully emitted items from each of the source MaybeSources without being interrupted by an error
notification from one of them.
- mergeDelayError(Publisher<? extends MaybeSource<? extends T>>) - Static method in class io.reactivex.rxjava3.core.Maybe
-
Flattens a Publisher that emits MaybeSources into one Publisher, in a way that allows a Subscriber to
receive all successfully emitted items from all of the source MaybeSources without being interrupted by
an error notification from one of them or even the main Publisher.
- mergeDelayError(Publisher<? extends MaybeSource<? extends T>>, int) - Static method in class io.reactivex.rxjava3.core.Maybe
-
Flattens a Publisher that emits MaybeSources into one Publisher, in a way that allows a Subscriber to
receive all successfully emitted items from all of the source MaybeSources without being interrupted by
an error notification from one of them or even the main Publisher as well as limiting the total number of active MaybeSources.
- mergeDelayError(MaybeSource<? extends T>, MaybeSource<? extends T>) - Static method in class io.reactivex.rxjava3.core.Maybe
-
Flattens two MaybeSources into one Flowable, in a way that allows a Subscriber to receive all
successfully emitted items from each of the source MaybeSources without being interrupted by an error
notification from one of them.
- mergeDelayError(MaybeSource<? extends T>, MaybeSource<? extends T>, MaybeSource<? extends T>) - Static method in class io.reactivex.rxjava3.core.Maybe
-
Flattens three MaybeSource into one Flowable, in a way that allows a Subscriber to receive all
successfully emitted items from all of the source MaybeSources without being interrupted by an error
notification from one of them.
- mergeDelayError(MaybeSource<? extends T>, MaybeSource<? extends T>, MaybeSource<? extends T>, MaybeSource<? extends T>) - Static method in class io.reactivex.rxjava3.core.Maybe
-
Flattens four MaybeSources into one Flowable, in a way that allows a Subscriber to receive all
successfully emitted items from all of the source MaybeSources without being interrupted by an error
notification from one of them.
- mergeDelayError(Iterable<? extends ObservableSource<? extends T>>) - Static method in class io.reactivex.rxjava3.core.Observable
-
Flattens an Iterable of ObservableSources into one ObservableSource, in a way that allows an Observer to receive all
successfully emitted items from each of the source ObservableSources without being interrupted by an error
notification from one of them.
- mergeDelayError(Iterable<? extends ObservableSource<? extends T>>, int, int) - Static method in class io.reactivex.rxjava3.core.Observable
-
Flattens an Iterable of ObservableSources into one ObservableSource, in a way that allows an Observer to receive all
successfully emitted items from each of the source ObservableSources without being interrupted by an error
notification from one of them, while limiting the number of concurrent subscriptions to these ObservableSources.
- mergeDelayError(Iterable<? extends ObservableSource<? extends T>>, int) - Static method in class io.reactivex.rxjava3.core.Observable
-
Flattens an Iterable of ObservableSources into one ObservableSource, in a way that allows an Observer to receive all
successfully emitted items from each of the source ObservableSources without being interrupted by an error
notification from one of them, while limiting the number of concurrent subscriptions to these ObservableSources.
- mergeDelayError(ObservableSource<? extends ObservableSource<? extends T>>) - Static method in class io.reactivex.rxjava3.core.Observable
-
Flattens an ObservableSource that emits ObservableSources into one ObservableSource, in a way that allows an Observer to
receive all successfully emitted items from all of the source ObservableSources without being interrupted by
an error notification from one of them.
- mergeDelayError(ObservableSource<? extends ObservableSource<? extends T>>, int) - Static method in class io.reactivex.rxjava3.core.Observable
-
Flattens an ObservableSource that emits ObservableSources into one ObservableSource, in a way that allows an Observer to
receive all successfully emitted items from all of the source ObservableSources without being interrupted by
an error notification from one of them, while limiting the
number of concurrent subscriptions to these ObservableSources.
- mergeDelayError(ObservableSource<? extends T>, ObservableSource<? extends T>) - Static method in class io.reactivex.rxjava3.core.Observable
-
Flattens two ObservableSources into one ObservableSource, in a way that allows an Observer to receive all
successfully emitted items from each of the source ObservableSources without being interrupted by an error
notification from one of them.
- mergeDelayError(ObservableSource<? extends T>, ObservableSource<? extends T>, ObservableSource<? extends T>) - Static method in class io.reactivex.rxjava3.core.Observable
-
Flattens three ObservableSources into one ObservableSource, in a way that allows an Observer to receive all
successfully emitted items from all of the source ObservableSources without being interrupted by an error
notification from one of them.
- mergeDelayError(ObservableSource<? extends T>, ObservableSource<? extends T>, ObservableSource<? extends T>, ObservableSource<? extends T>) - Static method in class io.reactivex.rxjava3.core.Observable
-
Flattens four ObservableSources into one ObservableSource, in a way that allows an Observer to receive all
successfully emitted items from all of the source ObservableSources without being interrupted by an error
notification from one of them.
- mergeDelayError(Iterable<? extends SingleSource<? extends T>>) - Static method in class io.reactivex.rxjava3.core.Single
-
Merges an Iterable sequence of SingleSource instances into a single Flowable sequence,
running all SingleSources at once and delaying any error(s) until all sources succeed or fail.
- mergeDelayError(Publisher<? extends SingleSource<? extends T>>) - Static method in class io.reactivex.rxjava3.core.Single
-
Merges a Flowable sequence of SingleSource instances into a single Flowable sequence,
running all SingleSources at once and delaying any error(s) until all sources succeed or fail.
- mergeDelayError(SingleSource<? extends T>, SingleSource<? extends T>) - Static method in class io.reactivex.rxjava3.core.Single
-
Flattens two Singles into a single Flowable, without any transformation, delaying
any error(s) until all sources succeed or fail.
- mergeDelayError(SingleSource<? extends T>, SingleSource<? extends T>, SingleSource<? extends T>) - Static method in class io.reactivex.rxjava3.core.Single
-
Flattens three Singles into a single Flowable, without any transformation, delaying
any error(s) until all sources succeed or fail.
- mergeDelayError(SingleSource<? extends T>, SingleSource<? extends T>, SingleSource<? extends T>, SingleSource<? extends T>) - Static method in class io.reactivex.rxjava3.core.Single
-
Flattens four Singles into a single Flowable, without any transformation, delaying
any error(s) until all sources succeed or fail.
- mergeWith(CompletableSource) - Method in class io.reactivex.rxjava3.core.Completable
-
Returns a Completable which subscribes to this and the other Completable and completes
when both of them complete or one emits an error.
- mergeWith(Publisher<? extends T>) - Method in class io.reactivex.rxjava3.core.Flowable
-
Flattens this and another Publisher into a single Publisher, without any transformation.
- mergeWith(SingleSource<? extends T>) - Method in class io.reactivex.rxjava3.core.Flowable
-
Merges the sequence of items of this Flowable with the success value of the other SingleSource.
- mergeWith(MaybeSource<? extends T>) - Method in class io.reactivex.rxjava3.core.Flowable
-
Merges the sequence of items of this Flowable with the success value of the other MaybeSource
or waits for both to complete normally if the MaybeSource is empty.
- mergeWith(CompletableSource) - Method in class io.reactivex.rxjava3.core.Flowable
-
Relays the items of this Flowable and completes only when the other CompletableSource completes
as well.
- mergeWith(MaybeSource<? extends T>) - Method in class io.reactivex.rxjava3.core.Maybe
-
Flattens this and another Maybe into a single Flowable, without any transformation.
- mergeWith(ObservableSource<? extends T>) - Method in class io.reactivex.rxjava3.core.Observable
-
Flattens this and another ObservableSource into a single ObservableSource, without any transformation.
- mergeWith(SingleSource<? extends T>) - Method in class io.reactivex.rxjava3.core.Observable
-
Merges the sequence of items of this Observable with the success value of the other SingleSource.
- mergeWith(MaybeSource<? extends T>) - Method in class io.reactivex.rxjava3.core.Observable
-
Merges the sequence of items of this Observable with the success value of the other MaybeSource
or waits both to complete normally if the MaybeSource is empty.
- mergeWith(CompletableSource) - Method in class io.reactivex.rxjava3.core.Observable
-
Relays the items of this Observable and completes only when the other CompletableSource completes
as well.
- mergeWith(SingleSource<? extends T>) - Method in class io.reactivex.rxjava3.core.Single
-
Flattens this and another Single into a single Flowable, without any transformation.
- MissingBackpressureException - Exception in io.reactivex.rxjava3.exceptions
-
Indicates that an operator attempted to emit a value but the downstream wasn't ready for it.
- MissingBackpressureException() - Constructor for exception io.reactivex.rxjava3.exceptions.MissingBackpressureException
-
Constructs a MissingBackpressureException without message or cause.
- MissingBackpressureException(String) - Constructor for exception io.reactivex.rxjava3.exceptions.MissingBackpressureException
-
Constructs a MissingBackpressureException with the given message but no cause.
- MulticastProcessor<T> - Class in io.reactivex.rxjava3.processors
-
A
FlowableProcessor
implementation that coordinates downstream requests through
a front-buffer and stable-prefetching, optionally canceling the upstream if all
subscribers have cancelled.
- Observable<T> - Class in io.reactivex.rxjava3.core
-
The Observable class is the non-backpressured, optionally multi-valued base reactive class that
offers factory methods, intermediate operators and the ability to consume synchronous
and/or asynchronous reactive dataflows.
- Observable() - Constructor for class io.reactivex.rxjava3.core.Observable
-
- ObservableConverter<T,R> - Interface in io.reactivex.rxjava3.core
-
- ObservableEmitter<T> - Interface in io.reactivex.rxjava3.core
-
Abstraction over an RxJava
Observer
that allows associating
a resource with it.
- ObservableOnSubscribe<T> - Interface in io.reactivex.rxjava3.core
-
A functional interface that has a
subscribe()
method that receives
an instance of an
ObservableEmitter
instance that allows pushing
events in a cancellation-safe manner.
- ObservableOperator<Downstream,Upstream> - Interface in io.reactivex.rxjava3.core
-
Interface to map/wrap a downstream observer to an upstream observer.
- ObservableSource<T> - Interface in io.reactivex.rxjava3.core
-
Represents a basic, non-backpressured
Observable
source base interface,
consumable via an
Observer
.
- ObservableTransformer<Upstream,Downstream> - Interface in io.reactivex.rxjava3.core
-
Interface to compose Observables.
- observeOn(Scheduler) - Method in class io.reactivex.rxjava3.core.Completable
-
Returns a Completable which emits the terminal events from the thread of the specified scheduler.
- observeOn(Scheduler) - Method in class io.reactivex.rxjava3.core.Flowable
-
Modifies a Publisher to perform its emissions and notifications on a specified
Scheduler
,
asynchronously with a bounded buffer of
Flowable.bufferSize()
slots.
- observeOn(Scheduler, boolean) - Method in class io.reactivex.rxjava3.core.Flowable
-
Modifies a Publisher to perform its emissions and notifications on a specified
Scheduler
,
asynchronously with a bounded buffer and optionally delays onError notifications.
- observeOn(Scheduler, boolean, int) - Method in class io.reactivex.rxjava3.core.Flowable
-
Modifies a Publisher to perform its emissions and notifications on a specified
Scheduler
,
asynchronously with a bounded buffer of configurable size and optionally delays onError notifications.
- observeOn(Scheduler) - Method in class io.reactivex.rxjava3.core.Maybe
-
Wraps a Maybe to emit its item (or notify of its error) on a specified
Scheduler
,
asynchronously.
- observeOn(Scheduler) - Method in class io.reactivex.rxjava3.core.Observable
-
Modifies an ObservableSource to perform its emissions and notifications on a specified
Scheduler
,
asynchronously with an unbounded buffer with
Flowable.bufferSize()
"island size".
- observeOn(Scheduler, boolean) - Method in class io.reactivex.rxjava3.core.Observable
-
Modifies an ObservableSource to perform its emissions and notifications on a specified
Scheduler
,
asynchronously with an unbounded buffer with
Flowable.bufferSize()
"island size" and optionally delays onError notifications.
- observeOn(Scheduler, boolean, int) - Method in class io.reactivex.rxjava3.core.Observable
-
Modifies an ObservableSource to perform its emissions and notifications on a specified
Scheduler
,
asynchronously with an unbounded buffer of configurable "island size" and optionally delays onError notifications.
- observeOn(Scheduler) - Method in class io.reactivex.rxjava3.core.Single
-
Modifies a Single to emit its item (or notify of its error) on a specified
Scheduler
,
asynchronously.
- Observer<T> - Interface in io.reactivex.rxjava3.core
-
Provides a mechanism for receiving push-based notifications.
- offer(T) - Method in class io.reactivex.rxjava3.processors.BehaviorProcessor
-
Tries to emit the item to all currently subscribed Subscribers if all of them
has requested some value, returns false otherwise.
- offer(T) - Method in class io.reactivex.rxjava3.processors.MulticastProcessor
-
Tries to offer an item into the internal queue and returns false
if the queue is full.
- offer(T) - Method in class io.reactivex.rxjava3.processors.PublishProcessor
-
Tries to emit the item to all currently subscribed Subscribers if all of them
has requested some value, returns false otherwise.
- ofType(Class<U>) - Method in class io.reactivex.rxjava3.core.Flowable
-
Filters the items emitted by a Publisher, only emitting those of the specified type.
- ofType(Class<U>) - Method in class io.reactivex.rxjava3.core.Maybe
-
Filters the items emitted by a Maybe, only emitting its success value if that
is an instance of the supplied Class.
- ofType(Class<U>) - Method in class io.reactivex.rxjava3.core.Observable
-
Filters the items emitted by an ObservableSource, only emitting those of the specified type.
- onAssembly(Maybe<T>) - Static method in class io.reactivex.rxjava3.plugins.RxJavaPlugins
-
Calls the associated hook function.
- onAssembly(Flowable<T>) - Static method in class io.reactivex.rxjava3.plugins.RxJavaPlugins
-
Calls the associated hook function.
- onAssembly(ConnectableFlowable<T>) - Static method in class io.reactivex.rxjava3.plugins.RxJavaPlugins
-
Calls the associated hook function.
- onAssembly(Observable<T>) - Static method in class io.reactivex.rxjava3.plugins.RxJavaPlugins
-
Calls the associated hook function.
- onAssembly(ConnectableObservable<T>) - Static method in class io.reactivex.rxjava3.plugins.RxJavaPlugins
-
Calls the associated hook function.
- onAssembly(Single<T>) - Static method in class io.reactivex.rxjava3.plugins.RxJavaPlugins
-
Calls the associated hook function.
- onAssembly(Completable) - Static method in class io.reactivex.rxjava3.plugins.RxJavaPlugins
-
Calls the associated hook function.
- onAssembly(ParallelFlowable<T>) - Static method in class io.reactivex.rxjava3.plugins.RxJavaPlugins
-
Calls the associated hook function.
- onBackpressureBuffer() - Method in class io.reactivex.rxjava3.core.Flowable
-
Instructs a Publisher that is emitting items faster than its Subscriber can consume them to buffer these
items indefinitely until they can be emitted.
- onBackpressureBuffer(boolean) - Method in class io.reactivex.rxjava3.core.Flowable
-
Instructs a Publisher that is emitting items faster than its Subscriber can consume them to buffer these
items indefinitely until they can be emitted.
- onBackpressureBuffer(int) - Method in class io.reactivex.rxjava3.core.Flowable
-
Instructs a Publisher that is emitting items faster than its Subscriber can consume them to buffer up to
a given amount of items until they can be emitted.
- onBackpressureBuffer(int, boolean) - Method in class io.reactivex.rxjava3.core.Flowable
-
Instructs a Publisher that is emitting items faster than its Subscriber can consume them to buffer up to
a given amount of items until they can be emitted.
- onBackpressureBuffer(int, boolean, boolean) - Method in class io.reactivex.rxjava3.core.Flowable
-
Instructs a Publisher that is emitting items faster than its Subscriber can consume them to buffer up to
a given amount of items until they can be emitted.
- onBackpressureBuffer(int, boolean, boolean, Action) - Method in class io.reactivex.rxjava3.core.Flowable
-
Instructs a Publisher that is emitting items faster than its Subscriber can consume them to buffer up to
a given amount of items until they can be emitted.
- onBackpressureBuffer(int, Action) - Method in class io.reactivex.rxjava3.core.Flowable
-
Instructs a Publisher that is emitting items faster than its Subscriber can consume them to buffer up to
a given amount of items until they can be emitted.
- onBackpressureBuffer(long, Action, BackpressureOverflowStrategy) - Method in class io.reactivex.rxjava3.core.Flowable
-
Instructs a Publisher that is emitting items faster than its Subscriber can consume them to buffer up to
a given amount of items until they can be emitted.
- onBackpressureDrop() - Method in class io.reactivex.rxjava3.core.Flowable
-
Instructs a Publisher that is emitting items faster than its Subscriber can consume them to discard,
rather than emit, those items that its Subscriber is not prepared to observe.
- onBackpressureDrop(Consumer<? super T>) - Method in class io.reactivex.rxjava3.core.Flowable
-
Instructs a Publisher that is emitting items faster than its Subscriber can consume them to discard,
rather than emit, those items that its Subscriber is not prepared to observe.
- onBackpressureLatest() - Method in class io.reactivex.rxjava3.core.Flowable
-
Instructs a Publisher that is emitting items faster than its Subscriber can consume them to
hold onto the latest value and emit that on request.
- onBeforeBlocking() - Static method in class io.reactivex.rxjava3.plugins.RxJavaPlugins
-
Called before an operator attempts a blocking operation
such as awaiting a condition or signal
and should return true to indicate the operator
should not block but throw an IllegalArgumentException.
- onComplete() - Method in interface io.reactivex.rxjava3.core.CompletableEmitter
-
Signal the completion.
- onComplete() - Method in interface io.reactivex.rxjava3.core.CompletableObserver
-
Called once the deferred computation completes normally.
- onComplete() - Method in interface io.reactivex.rxjava3.core.Emitter
-
Signal a completion.
- onComplete() - Method in interface io.reactivex.rxjava3.core.MaybeEmitter
-
Signal the completion.
- onComplete() - Method in interface io.reactivex.rxjava3.core.MaybeObserver
-
Called once the deferred computation completes normally.
- onComplete() - Method in interface io.reactivex.rxjava3.core.Observer
-
Notifies the Observer that the
Observable
has finished sending push-based notifications.
- onComplete() - Method in class io.reactivex.rxjava3.observers.SafeObserver
-
- onComplete() - Method in class io.reactivex.rxjava3.observers.SerializedObserver
-
- onComplete() - Method in class io.reactivex.rxjava3.observers.TestObserver
-
- onComplete() - Method in class io.reactivex.rxjava3.processors.AsyncProcessor
-
- onComplete() - Method in class io.reactivex.rxjava3.processors.BehaviorProcessor
-
- onComplete() - Method in class io.reactivex.rxjava3.processors.MulticastProcessor
-
- onComplete() - Method in class io.reactivex.rxjava3.processors.PublishProcessor
-
- onComplete() - Method in class io.reactivex.rxjava3.processors.ReplayProcessor
-
- onComplete() - Method in class io.reactivex.rxjava3.processors.UnicastProcessor
-
- onComplete() - Method in class io.reactivex.rxjava3.subjects.AsyncSubject
-
- onComplete() - Method in class io.reactivex.rxjava3.subjects.BehaviorSubject
-
- onComplete() - Method in class io.reactivex.rxjava3.subjects.CompletableSubject
-
- onComplete() - Method in class io.reactivex.rxjava3.subjects.MaybeSubject
-
- onComplete() - Method in class io.reactivex.rxjava3.subjects.PublishSubject
-
- onComplete() - Method in class io.reactivex.rxjava3.subjects.ReplaySubject
-
- onComplete() - Method in class io.reactivex.rxjava3.subjects.UnicastSubject
-
- onComplete() - Method in class io.reactivex.rxjava3.subscribers.SafeSubscriber
-
- onComplete() - Method in class io.reactivex.rxjava3.subscribers.SerializedSubscriber
-
- onComplete() - Method in class io.reactivex.rxjava3.subscribers.TestSubscriber
-
- onComputationScheduler(Scheduler) - Static method in class io.reactivex.rxjava3.plugins.RxJavaPlugins
-
Calls the associated hook function.
- onError(Throwable) - Method in interface io.reactivex.rxjava3.core.CompletableEmitter
-
Signal an exception.
- onError(Throwable) - Method in interface io.reactivex.rxjava3.core.CompletableObserver
-
Called once if the deferred computation 'throws' an exception.
- onError(Throwable) - Method in interface io.reactivex.rxjava3.core.Emitter
-
Signal a Throwable exception.
- onError(Throwable) - Method in interface io.reactivex.rxjava3.core.MaybeEmitter
-
Signal an exception.
- onError(Throwable) - Method in interface io.reactivex.rxjava3.core.MaybeObserver
-
Notifies the MaybeObserver that the
Maybe
has experienced an error condition.
- onError(Throwable) - Method in interface io.reactivex.rxjava3.core.Observer
-
Notifies the Observer that the
Observable
has experienced an error condition.
- onError(Throwable) - Method in interface io.reactivex.rxjava3.core.SingleEmitter
-
Signal an exception.
- onError(Throwable) - Method in interface io.reactivex.rxjava3.core.SingleObserver
-
Notifies the SingleObserver that the
Single
has experienced an error condition.
- onError(Throwable) - Method in class io.reactivex.rxjava3.observers.SafeObserver
-
- onError(Throwable) - Method in class io.reactivex.rxjava3.observers.SerializedObserver
-
- onError(Throwable) - Method in class io.reactivex.rxjava3.observers.TestObserver
-
- onError(Throwable) - Static method in class io.reactivex.rxjava3.plugins.RxJavaPlugins
-
Called when an undeliverable error occurs.
- onError(Throwable) - Method in class io.reactivex.rxjava3.processors.AsyncProcessor
-
- onError(Throwable) - Method in class io.reactivex.rxjava3.processors.BehaviorProcessor
-
- onError(Throwable) - Method in class io.reactivex.rxjava3.processors.MulticastProcessor
-
- onError(Throwable) - Method in class io.reactivex.rxjava3.processors.PublishProcessor
-
- onError(Throwable) - Method in class io.reactivex.rxjava3.processors.ReplayProcessor
-
- onError(Throwable) - Method in class io.reactivex.rxjava3.processors.UnicastProcessor
-
- onError(Throwable) - Method in class io.reactivex.rxjava3.subjects.AsyncSubject
-
- onError(Throwable) - Method in class io.reactivex.rxjava3.subjects.BehaviorSubject
-
- onError(Throwable) - Method in class io.reactivex.rxjava3.subjects.CompletableSubject
-
- onError(Throwable) - Method in class io.reactivex.rxjava3.subjects.MaybeSubject
-
- onError(Throwable) - Method in class io.reactivex.rxjava3.subjects.PublishSubject
-
- onError(Throwable) - Method in class io.reactivex.rxjava3.subjects.ReplaySubject
-
- onError(Throwable) - Method in class io.reactivex.rxjava3.subjects.SingleSubject
-
- onError(Throwable) - Method in class io.reactivex.rxjava3.subjects.UnicastSubject
-
- onError(Throwable) - Method in class io.reactivex.rxjava3.subscribers.SafeSubscriber
-
- onError(Throwable) - Method in class io.reactivex.rxjava3.subscribers.SerializedSubscriber
-
- onError(Throwable) - Method in class io.reactivex.rxjava3.subscribers.TestSubscriber
-
- onErrorComplete() - Method in class io.reactivex.rxjava3.core.Completable
-
Returns a Completable instance that if this Completable emits an error, it will emit an onComplete
and swallow the throwable.
- onErrorComplete(Predicate<? super Throwable>) - Method in class io.reactivex.rxjava3.core.Completable
-
Returns a Completable instance that if this Completable emits an error and the predicate returns
true, it will emit an onComplete and swallow the throwable.
- onErrorComplete() - Method in class io.reactivex.rxjava3.core.Maybe
-
Returns a Maybe instance that if this Maybe emits an error, it will emit an onComplete
and swallow the throwable.
- onErrorComplete(Predicate<? super Throwable>) - Method in class io.reactivex.rxjava3.core.Maybe
-
Returns a Maybe instance that if this Maybe emits an error and the predicate returns
true, it will emit an onComplete and swallow the throwable.
- OnErrorNotImplementedException - Exception in io.reactivex.rxjava3.exceptions
-
Represents an exception used to signal to the RxJavaPlugins.onError()
that a
callback-based subscribe() method on a base reactive type didn't specify
an onError handler.
- OnErrorNotImplementedException(String, Throwable) - Constructor for exception io.reactivex.rxjava3.exceptions.OnErrorNotImplementedException
-
Customizes the Throwable
with a custom message and wraps it before it
is signalled to the RxJavaPlugins.onError()
handler as OnErrorNotImplementedException
.
- OnErrorNotImplementedException(Throwable) - Constructor for exception io.reactivex.rxjava3.exceptions.OnErrorNotImplementedException
-
Wraps the Throwable
before it
is signalled to the RxJavaPlugins.onError()
handler as OnErrorNotImplementedException
.
- onErrorResumeNext(Function<? super Throwable, ? extends CompletableSource>) - Method in class io.reactivex.rxjava3.core.Completable
-
Returns a Completable instance that when encounters an error from this Completable, calls the
specified mapper function that returns another Completable instance for it and resumes the
execution with it.
- onErrorResumeNext(Function<? super Throwable, ? extends Publisher<? extends T>>) - Method in class io.reactivex.rxjava3.core.Flowable
-
Instructs a Publisher to pass control to another Publisher rather than invoking
onError
if it encounters an error.
- onErrorResumeNext(Function<? super Throwable, ? extends MaybeSource<? extends T>>) - Method in class io.reactivex.rxjava3.core.Maybe
-
Instructs a Maybe to pass control to another Maybe rather than invoking
onError
if it encounters an error.
- onErrorResumeNext(Function<? super Throwable, ? extends ObservableSource<? extends T>>) - Method in class io.reactivex.rxjava3.core.Observable
-
Instructs an ObservableSource to pass control to another ObservableSource rather than invoking
onError
if it encounters an error.
- onErrorResumeNext(Function<? super Throwable, ? extends SingleSource<? extends T>>) - Method in class io.reactivex.rxjava3.core.Single
-
- onErrorResumeWith(Publisher<? extends T>) - Method in class io.reactivex.rxjava3.core.Flowable
-
Instructs a Publisher to pass control to another Publisher rather than invoking
onError
if it encounters an error.
- onErrorResumeWith(MaybeSource<? extends T>) - Method in class io.reactivex.rxjava3.core.Maybe
-
Instructs a Maybe to pass control to another
MaybeSource
rather than invoking
onError
if it encounters an error.
- onErrorResumeWith(ObservableSource<? extends T>) - Method in class io.reactivex.rxjava3.core.Observable
-
Instructs an ObservableSource to pass control to another ObservableSource rather than invoking
onError
if it encounters an error.
- onErrorResumeWith(SingleSource<? extends T>) - Method in class io.reactivex.rxjava3.core.Single
-
- onErrorReturn(Function<? super Throwable, ? extends T>) - Method in class io.reactivex.rxjava3.core.Flowable
-
Instructs a Publisher to emit an item (returned by a specified function) rather than invoking
onError
if it encounters an error.
- onErrorReturn(Function<? super Throwable, ? extends T>) - Method in class io.reactivex.rxjava3.core.Maybe
-
Instructs a Maybe to emit an item (returned by a specified function) rather than invoking
onError
if it encounters an error.
- onErrorReturn(Function<? super Throwable, ? extends T>) - Method in class io.reactivex.rxjava3.core.Observable
-
Instructs an ObservableSource to emit an item (returned by a specified function) rather than invoking
onError
if it encounters an error.
- onErrorReturn(Function<Throwable, ? extends T>) - Method in class io.reactivex.rxjava3.core.Single
-
Instructs a Single to emit an item (returned by a specified function) rather than invoking
onError
if it encounters an error.
- onErrorReturnItem(T) - Method in class io.reactivex.rxjava3.core.Flowable
-
Instructs a Publisher to emit an item (returned by a specified function) rather than invoking
onError
if it encounters an error.
- onErrorReturnItem(T) - Method in class io.reactivex.rxjava3.core.Maybe
-
Instructs a Maybe to emit an item (returned by a specified function) rather than invoking
onError
if it encounters an error.
- onErrorReturnItem(T) - Method in class io.reactivex.rxjava3.core.Observable
-
Instructs an ObservableSource to emit an item (returned by a specified function) rather than invoking
onError
if it encounters an error.
- onErrorReturnItem(T) - Method in class io.reactivex.rxjava3.core.Single
-
Signals the specified value as success in case the current Single signals an error.
- onExceptionResumeNext(MaybeSource<? extends T>) - Method in class io.reactivex.rxjava3.core.Maybe
-
Instructs a Maybe to pass control to another MaybeSource rather than invoking
onError
if it encounters an
Exception
.
- onIoScheduler(Scheduler) - Static method in class io.reactivex.rxjava3.plugins.RxJavaPlugins
-
Calls the associated hook function.
- onNewThreadScheduler(Scheduler) - Static method in class io.reactivex.rxjava3.plugins.RxJavaPlugins
-
Calls the associated hook function.
- onNext(T) - Method in interface io.reactivex.rxjava3.core.Emitter
-
Signal a normal value.
- onNext(T) - Method in interface io.reactivex.rxjava3.core.Observer
-
Provides the Observer with a new item to observe.
- onNext(T) - Method in class io.reactivex.rxjava3.observers.SafeObserver
-
- onNext(T) - Method in class io.reactivex.rxjava3.observers.SerializedObserver
-
- onNext(T) - Method in class io.reactivex.rxjava3.observers.TestObserver
-
- onNext(T) - Method in class io.reactivex.rxjava3.processors.AsyncProcessor
-
- onNext(T) - Method in class io.reactivex.rxjava3.processors.BehaviorProcessor
-
- onNext(T) - Method in class io.reactivex.rxjava3.processors.MulticastProcessor
-
- onNext(T) - Method in class io.reactivex.rxjava3.processors.PublishProcessor
-
- onNext(T) - Method in class io.reactivex.rxjava3.processors.ReplayProcessor
-
- onNext(T) - Method in class io.reactivex.rxjava3.processors.UnicastProcessor
-
- onNext(T) - Method in class io.reactivex.rxjava3.subjects.AsyncSubject
-
- onNext(T) - Method in class io.reactivex.rxjava3.subjects.BehaviorSubject
-
- onNext(T) - Method in class io.reactivex.rxjava3.subjects.PublishSubject
-
- onNext(T) - Method in class io.reactivex.rxjava3.subjects.ReplaySubject
-
- onNext(T) - Method in class io.reactivex.rxjava3.subjects.UnicastSubject
-
- onNext(T) - Method in class io.reactivex.rxjava3.subscribers.SafeSubscriber
-
- onNext(T) - Method in class io.reactivex.rxjava3.subscribers.SerializedSubscriber
-
- onNext(T) - Method in class io.reactivex.rxjava3.subscribers.TestSubscriber
-
- onSchedule(Runnable) - Static method in class io.reactivex.rxjava3.plugins.RxJavaPlugins
-
Called when a task is scheduled.
- onSingleScheduler(Scheduler) - Static method in class io.reactivex.rxjava3.plugins.RxJavaPlugins
-
Calls the associated hook function.
- onStart() - Method in class io.reactivex.rxjava3.observers.DefaultObserver
-
Called once the subscription has been set on this observer; override this
to perform initialization.
- onStart() - Method in class io.reactivex.rxjava3.observers.DisposableCompletableObserver
-
Called once the single upstream Disposable is set via onSubscribe.
- onStart() - Method in class io.reactivex.rxjava3.observers.DisposableMaybeObserver
-
Called once the single upstream Disposable is set via onSubscribe.
- onStart() - Method in class io.reactivex.rxjava3.observers.DisposableObserver
-
Called once the single upstream Disposable is set via onSubscribe.
- onStart() - Method in class io.reactivex.rxjava3.observers.DisposableSingleObserver
-
Called once the single upstream Disposable is set via onSubscribe.
- onStart() - Method in class io.reactivex.rxjava3.observers.ResourceCompletableObserver
-
Called once the upstream sets a Subscription on this ResourceObserver.
- onStart() - Method in class io.reactivex.rxjava3.observers.ResourceMaybeObserver
-
Called once the upstream sets a Subscription on this ResourceObserver.
- onStart() - Method in class io.reactivex.rxjava3.observers.ResourceObserver
-
Called once the upstream sets a Subscription on this ResourceObserver.
- onStart() - Method in class io.reactivex.rxjava3.observers.ResourceSingleObserver
-
Called once the upstream sets a Subscription on this ResourceObserver.
- onStart() - Method in class io.reactivex.rxjava3.subscribers.DefaultSubscriber
-
Called once the subscription has been set on this observer; override this
to perform initialization or issue an initial request.
- onStart() - Method in class io.reactivex.rxjava3.subscribers.DisposableSubscriber
-
Called once the single upstream Subscription is set via onSubscribe.
- onStart() - Method in class io.reactivex.rxjava3.subscribers.ResourceSubscriber
-
Called once the upstream sets a Subscription on this AsyncObserver.
- onStart() - Method in class io.reactivex.rxjava3.subscribers.TestSubscriber
-
Called after the onSubscribe is called and handled.
- onSubscribe(Disposable) - Method in interface io.reactivex.rxjava3.core.CompletableObserver
-
Called once by the Completable to set a Disposable on this instance which
then can be used to cancel the subscription at any time.
- onSubscribe(Subscription) - Method in interface io.reactivex.rxjava3.core.FlowableSubscriber
-
- onSubscribe(Disposable) - Method in interface io.reactivex.rxjava3.core.MaybeObserver
-
Provides the MaybeObserver with the means of cancelling (disposing) the
connection (channel) with the Maybe in both
synchronous (from within onSubscribe(Disposable)
itself) and asynchronous manner.
- onSubscribe(Disposable) - Method in interface io.reactivex.rxjava3.core.Observer
-
Provides the Observer with the means of cancelling (disposing) the
connection (channel) with the Observable in both
synchronous (from within
Observer.onNext(Object)
) and asynchronous manner.
- onSubscribe(Disposable) - Method in interface io.reactivex.rxjava3.core.SingleObserver
-
Provides the SingleObserver with the means of cancelling (disposing) the
connection (channel) with the Single in both
synchronous (from within onSubscribe(Disposable)
itself) and asynchronous manner.
- onSubscribe(Disposable) - Method in class io.reactivex.rxjava3.observers.DefaultObserver
-
- onSubscribe(Disposable) - Method in class io.reactivex.rxjava3.observers.DisposableCompletableObserver
-
- onSubscribe(Disposable) - Method in class io.reactivex.rxjava3.observers.DisposableMaybeObserver
-
- onSubscribe(Disposable) - Method in class io.reactivex.rxjava3.observers.DisposableObserver
-
- onSubscribe(Disposable) - Method in class io.reactivex.rxjava3.observers.DisposableSingleObserver
-
- onSubscribe(Disposable) - Method in class io.reactivex.rxjava3.observers.ResourceCompletableObserver
-
- onSubscribe(Disposable) - Method in class io.reactivex.rxjava3.observers.ResourceMaybeObserver
-
- onSubscribe(Disposable) - Method in class io.reactivex.rxjava3.observers.ResourceObserver
-
- onSubscribe(Disposable) - Method in class io.reactivex.rxjava3.observers.ResourceSingleObserver
-
- onSubscribe(Disposable) - Method in class io.reactivex.rxjava3.observers.SafeObserver
-
- onSubscribe(Disposable) - Method in class io.reactivex.rxjava3.observers.SerializedObserver
-
- onSubscribe(Disposable) - Method in class io.reactivex.rxjava3.observers.TestObserver
-
- onSubscribe(Flowable<T>, Subscriber<? super T>) - Static method in class io.reactivex.rxjava3.plugins.RxJavaPlugins
-
Calls the associated hook function.
- onSubscribe(Observable<T>, Observer<? super T>) - Static method in class io.reactivex.rxjava3.plugins.RxJavaPlugins
-
Calls the associated hook function.
- onSubscribe(Single<T>, SingleObserver<? super T>) - Static method in class io.reactivex.rxjava3.plugins.RxJavaPlugins
-
Calls the associated hook function.
- onSubscribe(Completable, CompletableObserver) - Static method in class io.reactivex.rxjava3.plugins.RxJavaPlugins
-
Calls the associated hook function.
- onSubscribe(Maybe<T>, MaybeObserver<? super T>) - Static method in class io.reactivex.rxjava3.plugins.RxJavaPlugins
-
Calls the associated hook function.
- onSubscribe(Subscription) - Method in class io.reactivex.rxjava3.processors.AsyncProcessor
-
- onSubscribe(Subscription) - Method in class io.reactivex.rxjava3.processors.BehaviorProcessor
-
- onSubscribe(Subscription) - Method in class io.reactivex.rxjava3.processors.MulticastProcessor
-
- onSubscribe(Subscription) - Method in class io.reactivex.rxjava3.processors.PublishProcessor
-
- onSubscribe(Subscription) - Method in class io.reactivex.rxjava3.processors.ReplayProcessor
-
- onSubscribe(Subscription) - Method in class io.reactivex.rxjava3.processors.UnicastProcessor
-
- onSubscribe(Disposable) - Method in class io.reactivex.rxjava3.subjects.AsyncSubject
-
- onSubscribe(Disposable) - Method in class io.reactivex.rxjava3.subjects.BehaviorSubject
-
- onSubscribe(Disposable) - Method in class io.reactivex.rxjava3.subjects.CompletableSubject
-
- onSubscribe(Disposable) - Method in class io.reactivex.rxjava3.subjects.MaybeSubject
-
- onSubscribe(Disposable) - Method in class io.reactivex.rxjava3.subjects.PublishSubject
-
- onSubscribe(Disposable) - Method in class io.reactivex.rxjava3.subjects.ReplaySubject
-
- onSubscribe(Disposable) - Method in class io.reactivex.rxjava3.subjects.SingleSubject
-
- onSubscribe(Disposable) - Method in class io.reactivex.rxjava3.subjects.UnicastSubject
-
- onSubscribe(Subscription) - Method in class io.reactivex.rxjava3.subscribers.DefaultSubscriber
-
- onSubscribe(Subscription) - Method in class io.reactivex.rxjava3.subscribers.DisposableSubscriber
-
- onSubscribe(Subscription) - Method in class io.reactivex.rxjava3.subscribers.ResourceSubscriber
-
- onSubscribe(Subscription) - Method in class io.reactivex.rxjava3.subscribers.SafeSubscriber
-
- onSubscribe(Subscription) - Method in class io.reactivex.rxjava3.subscribers.SerializedSubscriber
-
- onSubscribe(Subscription) - Method in class io.reactivex.rxjava3.subscribers.TestSubscriber
-
- onSuccess(T) - Method in interface io.reactivex.rxjava3.core.MaybeEmitter
-
Signal a success value.
- onSuccess(T) - Method in interface io.reactivex.rxjava3.core.MaybeObserver
-
Notifies the MaybeObserver with one item and that the
Maybe
has finished sending
push-based notifications.
- onSuccess(T) - Method in interface io.reactivex.rxjava3.core.SingleEmitter
-
Signal a success value.
- onSuccess(T) - Method in interface io.reactivex.rxjava3.core.SingleObserver
-
Notifies the SingleObserver with a single item and that the
Single
has finished sending
push-based notifications.
- onSuccess(T) - Method in class io.reactivex.rxjava3.observers.TestObserver
-
- onSuccess(T) - Method in class io.reactivex.rxjava3.subjects.MaybeSubject
-
- onSuccess(T) - Method in class io.reactivex.rxjava3.subjects.SingleSubject
-
- onTerminateDetach() - Method in class io.reactivex.rxjava3.core.Completable
-
Nulls out references to the upstream producer and downstream CompletableObserver if
the sequence is terminated or downstream calls dispose().
- onTerminateDetach() - Method in class io.reactivex.rxjava3.core.Flowable
-
Nulls out references to the upstream producer and downstream Subscriber if
the sequence is terminated or downstream cancels.
- onTerminateDetach() - Method in class io.reactivex.rxjava3.core.Maybe
-
Nulls out references to the upstream producer and downstream MaybeObserver if
the sequence is terminated or downstream calls dispose().
- onTerminateDetach() - Method in class io.reactivex.rxjava3.core.Observable
-
Nulls out references to the upstream producer and downstream Observer if
the sequence is terminated or downstream calls dispose().
- onTerminateDetach() - Method in class io.reactivex.rxjava3.core.Single
-
Nulls out references to the upstream producer and downstream SingleObserver if
the sequence is terminated or downstream calls dispose().
- range(int, int) - Static method in class io.reactivex.rxjava3.core.Flowable
-
Returns a Flowable that emits a sequence of Integers within a specified range.
- range(int, int) - Static method in class io.reactivex.rxjava3.core.Observable
-
Returns an Observable that emits a sequence of Integers within a specified range.
- rangeLong(long, long) - Static method in class io.reactivex.rxjava3.core.Flowable
-
Returns a Flowable that emits a sequence of Longs within a specified range.
- rangeLong(long, long) - Static method in class io.reactivex.rxjava3.core.Observable
-
Returns an Observable that emits a sequence of Longs within a specified range.
- rebatchRequests(int) - Method in class io.reactivex.rxjava3.core.Flowable
-
Requests n
initially from the upstream and then 75% of n
subsequently
after 75% of n
values have been emitted to the downstream.
- reduce(BiFunction<T, T, T>) - Method in class io.reactivex.rxjava3.core.Flowable
-
Returns a Maybe that applies a specified accumulator function to the first item emitted by a source
Publisher, then feeds the result of that function along with the second item emitted by the source
Publisher into the same function, and so on until all items have been emitted by the finite source Publisher,
and emits the final result from the final call to your function as its sole item.
- reduce(R, BiFunction<R, ? super T, R>) - Method in class io.reactivex.rxjava3.core.Flowable
-
Returns a Single that applies a specified accumulator function to the first item emitted by a source
Publisher and a specified seed value, then feeds the result of that function along with the second item
emitted by a Publisher into the same function, and so on until all items have been emitted by the
finite source Publisher, emitting the final result from the final call to your function as its sole item.
- reduce(BiFunction<T, T, T>) - Method in class io.reactivex.rxjava3.core.Observable
-
Returns a Maybe that applies a specified accumulator function to the first item emitted by a source
ObservableSource, then feeds the result of that function along with the second item emitted by the source
ObservableSource into the same function, and so on until all items have been emitted by the finite source ObservableSource,
and emits the final result from the final call to your function as its sole item.
- reduce(R, BiFunction<R, ? super T, R>) - Method in class io.reactivex.rxjava3.core.Observable
-
Returns a Single that applies a specified accumulator function to the first item emitted by a source
ObservableSource and a specified seed value, then feeds the result of that function along with the second item
emitted by an ObservableSource into the same function, and so on until all items have been emitted by the
finite source ObservableSource, emitting the final result from the final call to your function as its sole item.
- reduce(BiFunction<T, T, T>) - Method in class io.reactivex.rxjava3.parallel.ParallelFlowable
-
Reduces all values within a 'rail' and across 'rails' with a reducer function into a single
sequential value.
- reduce(Supplier<R>, BiFunction<R, ? super T, R>) - Method in class io.reactivex.rxjava3.parallel.ParallelFlowable
-
Reduces all values within a 'rail' to a single value (with a possibly different type) via
a reducer function that is initialized on each rail from an initialSupplier value.
- reduceWith(Supplier<R>, BiFunction<R, ? super T, R>) - Method in class io.reactivex.rxjava3.core.Flowable
-
Returns a Single that applies a specified accumulator function to the first item emitted by a source
Publisher and a seed value derived from calling a specified seedSupplier, then feeds the result
of that function along with the second item emitted by a Publisher into the same function, and so on until
all items have been emitted by the finite source Publisher, emitting the final result from the final call to your
function as its sole item.
- reduceWith(Supplier<R>, BiFunction<R, ? super T, R>) - Method in class io.reactivex.rxjava3.core.Observable
-
Returns a Single that applies a specified accumulator function to the first item emitted by a source
ObservableSource and a seed value derived from calling a specified seedSupplier, then feeds the result
of that function along with the second item emitted by an ObservableSource into the same function,
and so on until all items have been emitted by the finite source ObservableSource, emitting the final result
from the final call to your function as its sole item.
- refCount() - Method in class io.reactivex.rxjava3.flowables.ConnectableFlowable
-
Returns a Flowable
that stays connected to this ConnectableFlowable
as long as there
is at least one subscription to this ConnectableFlowable
.
- refCount(int) - Method in class io.reactivex.rxjava3.flowables.ConnectableFlowable
-
Connects to the upstream ConnectableFlowable
if the number of subscribed
subscriber reaches the specified count and disconnect if all subscribers have unsubscribed.
- refCount(long, TimeUnit) - Method in class io.reactivex.rxjava3.flowables.ConnectableFlowable
-
Connects to the upstream ConnectableFlowable
if the number of subscribed
subscriber reaches 1 and disconnect after the specified
timeout if all subscribers have unsubscribed.
- refCount(long, TimeUnit, Scheduler) - Method in class io.reactivex.rxjava3.flowables.ConnectableFlowable
-
Connects to the upstream ConnectableFlowable
if the number of subscribed
subscriber reaches 1 and disconnect after the specified
timeout if all subscribers have unsubscribed.
- refCount(int, long, TimeUnit) - Method in class io.reactivex.rxjava3.flowables.ConnectableFlowable
-
Connects to the upstream ConnectableFlowable
if the number of subscribed
subscriber reaches the specified count and disconnect after the specified
timeout if all subscribers have unsubscribed.
- refCount(int, long, TimeUnit, Scheduler) - Method in class io.reactivex.rxjava3.flowables.ConnectableFlowable
-
Connects to the upstream ConnectableFlowable
if the number of subscribed
subscriber reaches the specified count and disconnect after the specified
timeout if all subscribers have unsubscribed.
- refCount() - Method in class io.reactivex.rxjava3.observables.ConnectableObservable
-
Returns an Observable
that stays connected to this ConnectableObservable
as long as there
is at least one subscription to this ConnectableObservable
.
- refCount(int) - Method in class io.reactivex.rxjava3.observables.ConnectableObservable
-
Connects to the upstream ConnectableObservable
if the number of subscribed
observers reaches the specified count and disconnect if all subscribers have unsubscribed.
- refCount(long, TimeUnit) - Method in class io.reactivex.rxjava3.observables.ConnectableObservable
-
Connects to the upstream ConnectableObservable
if the number of subscribed
observers reaches 1 and disconnect after the specified
timeout if all subscribers have unsubscribed.
- refCount(long, TimeUnit, Scheduler) - Method in class io.reactivex.rxjava3.observables.ConnectableObservable
-
Connects to the upstream ConnectableObservable
if the number of subscribed
observers reaches 1 and disconnect after the specified
timeout if all subscribers have unsubscribed.
- refCount(int, long, TimeUnit) - Method in class io.reactivex.rxjava3.observables.ConnectableObservable
-
Connects to the upstream ConnectableObservable
if the number of subscribed
observers reaches the specified count and disconnect after the specified
timeout if all subscribers have unsubscribed.
- refCount(int, long, TimeUnit, Scheduler) - Method in class io.reactivex.rxjava3.observables.ConnectableObservable
-
Connects to the upstream ConnectableObservable
if the number of subscribed
observers reaches the specified count and disconnect after the specified
timeout if all subscribers have unsubscribed.
- remove(Disposable) - Method in class io.reactivex.rxjava3.disposables.CompositeDisposable
-
Removes and disposes the given disposable if it is part of this
container.
- repeat() - Method in class io.reactivex.rxjava3.core.Completable
-
Returns a Completable that repeatedly subscribes to this Completable until disposed.
- repeat(long) - Method in class io.reactivex.rxjava3.core.Completable
-
Returns a Completable that subscribes repeatedly at most the given times to this Completable.
- repeat() - Method in class io.reactivex.rxjava3.core.Flowable
-
Returns a Flowable that repeats the sequence of items emitted by the source Publisher indefinitely.
- repeat(long) - Method in class io.reactivex.rxjava3.core.Flowable
-
Returns a Flowable that repeats the sequence of items emitted by the source Publisher at most
count
times.
- repeat() - Method in class io.reactivex.rxjava3.core.Maybe
-
Returns a Flowable that repeats the sequence of items emitted by the source Maybe indefinitely.
- repeat(long) - Method in class io.reactivex.rxjava3.core.Maybe
-
Returns a Flowable that repeats the sequence of items emitted by the source Maybe at most
count
times.
- repeat() - Method in class io.reactivex.rxjava3.core.Observable
-
Returns an Observable that repeats the sequence of items emitted by the source ObservableSource indefinitely.
- repeat(long) - Method in class io.reactivex.rxjava3.core.Observable
-
Returns an Observable that repeats the sequence of items emitted by the source ObservableSource at most
count
times.
- repeat() - Method in class io.reactivex.rxjava3.core.Single
-
Repeatedly re-subscribes to the current Single and emits each success value.
- repeat(long) - Method in class io.reactivex.rxjava3.core.Single
-
Re-subscribes to the current Single at most the given number of times and emits each success value.
- repeatUntil(BooleanSupplier) - Method in class io.reactivex.rxjava3.core.Completable
-
Returns a Completable that repeatedly subscribes to this Completable so long as the given
stop supplier returns false.
- repeatUntil(BooleanSupplier) - Method in class io.reactivex.rxjava3.core.Flowable
-
Returns a Flowable that repeats the sequence of items emitted by the source Publisher until
the provided stop function returns true.
- repeatUntil(BooleanSupplier) - Method in class io.reactivex.rxjava3.core.Maybe
-
Returns a Flowable that repeats the sequence of items emitted by the source Maybe until
the provided stop function returns true.
- repeatUntil(BooleanSupplier) - Method in class io.reactivex.rxjava3.core.Observable
-
Returns an Observable that repeats the sequence of items emitted by the source ObservableSource until
the provided stop function returns true.
- repeatUntil(BooleanSupplier) - Method in class io.reactivex.rxjava3.core.Single
-
Re-subscribes to the current Single until the given BooleanSupplier returns true.
- repeatWhen(Function<? super Flowable<Object>, ? extends Publisher<?>>) - Method in class io.reactivex.rxjava3.core.Completable
-
Returns a Completable instance that repeats when the Publisher returned by the handler
emits an item or completes when this Publisher emits a completed event.
- repeatWhen(Function<? super Flowable<Object>, ? extends Publisher<?>>) - Method in class io.reactivex.rxjava3.core.Flowable
-
Returns a Flowable that emits the same values as the source Publisher with the exception of an
onComplete
.
- repeatWhen(Function<? super Flowable<Object>, ? extends Publisher<?>>) - Method in class io.reactivex.rxjava3.core.Maybe
-
Returns a Flowable that emits the same values as the source Publisher with the exception of an
onComplete
.
- repeatWhen(Function<? super Observable<Object>, ? extends ObservableSource<?>>) - Method in class io.reactivex.rxjava3.core.Observable
-
Returns an Observable that emits the same values as the source ObservableSource with the exception of an
onComplete
.
- repeatWhen(Function<? super Flowable<Object>, ? extends Publisher<?>>) - Method in class io.reactivex.rxjava3.core.Single
-
Re-subscribes to the current Single if
the Publisher returned by the handler function signals a value in response to a
value signalled through the Flowable the handle receives.
- replace(Disposable) - Method in class io.reactivex.rxjava3.disposables.SerialDisposable
-
Atomically: set the next disposable on this container but don't dispose the previous
one (if any) or dispose next if the container has been disposed.
- replay() - Method in class io.reactivex.rxjava3.core.Flowable
-
Returns a
ConnectableFlowable
that shares a single subscription to the underlying Publisher
that will replay all of its items and notifications to any future
Subscriber
.
- replay(Function<? super Flowable<T>, ? extends Publisher<R>>) - Method in class io.reactivex.rxjava3.core.Flowable
-
Returns a Flowable that emits items that are the results of invoking a specified selector on the items
emitted by a
ConnectableFlowable
that shares a single subscription to the source Publisher.
- replay(Function<? super Flowable<T>, ? extends Publisher<R>>, int) - Method in class io.reactivex.rxjava3.core.Flowable
-
Returns a Flowable that emits items that are the results of invoking a specified selector on items
emitted by a
ConnectableFlowable
that shares a single subscription to the source Publisher,
replaying
bufferSize
notifications.
- replay(Function<? super Flowable<T>, ? extends Publisher<R>>, int, boolean) - Method in class io.reactivex.rxjava3.core.Flowable
-
Returns a Flowable that emits items that are the results of invoking a specified selector on items
emitted by a
ConnectableFlowable
that shares a single subscription to the source Publisher,
replaying
bufferSize
notifications.
- replay(Function<? super Flowable<T>, ? extends Publisher<R>>, int, long, TimeUnit) - Method in class io.reactivex.rxjava3.core.Flowable
-
Returns a Flowable that emits items that are the results of invoking a specified selector on items
emitted by a
ConnectableFlowable
that shares a single subscription to the source Publisher,
replaying no more than
bufferSize
items that were emitted within a specified time window.
- replay(Function<? super Flowable<T>, ? extends Publisher<R>>, int, long, TimeUnit, Scheduler) - Method in class io.reactivex.rxjava3.core.Flowable
-
Returns a Flowable that emits items that are the results of invoking a specified selector on items
emitted by a
ConnectableFlowable
that shares a single subscription to the source Publisher,
replaying no more than
bufferSize
items that were emitted within a specified time window.
- replay(Function<? super Flowable<T>, ? extends Publisher<R>>, int, long, TimeUnit, Scheduler, boolean) - Method in class io.reactivex.rxjava3.core.Flowable
-
Returns a Flowable that emits items that are the results of invoking a specified selector on items
emitted by a
ConnectableFlowable
that shares a single subscription to the source Publisher,
replaying no more than
bufferSize
items that were emitted within a specified time window.
- replay(Function<? super Flowable<T>, ? extends Publisher<R>>, long, TimeUnit) - Method in class io.reactivex.rxjava3.core.Flowable
-
Returns a Flowable that emits items that are the results of invoking a specified selector on items
emitted by a
ConnectableFlowable
that shares a single subscription to the source Publisher,
replaying all items that were emitted within a specified time window.
- replay(Function<? super Flowable<T>, ? extends Publisher<R>>, long, TimeUnit, Scheduler) - Method in class io.reactivex.rxjava3.core.Flowable
-
Returns a Flowable that emits items that are the results of invoking a specified selector on items
emitted by a
ConnectableFlowable
that shares a single subscription to the source Publisher,
replaying all items that were emitted within a specified time window.
- replay(Function<? super Flowable<T>, ? extends Publisher<R>>, long, TimeUnit, Scheduler, boolean) - Method in class io.reactivex.rxjava3.core.Flowable
-
Returns a Flowable that emits items that are the results of invoking a specified selector on items
emitted by a
ConnectableFlowable
that shares a single subscription to the source Publisher,
replaying all items that were emitted within a specified time window.
- replay(int) - Method in class io.reactivex.rxjava3.core.Flowable
-
Returns a
ConnectableFlowable
that shares a single subscription to the source Publisher that
replays at most
bufferSize
items emitted by that Publisher.
- replay(int, boolean) - Method in class io.reactivex.rxjava3.core.Flowable
-
Returns a
ConnectableFlowable
that shares a single subscription to the source Publisher that
replays at most
bufferSize
items emitted by that Publisher.
- replay(int, long, TimeUnit) - Method in class io.reactivex.rxjava3.core.Flowable
-
Returns a
ConnectableFlowable
that shares a single subscription to the source Publisher and
replays at most
bufferSize
items that were emitted during a specified time window.
- replay(int, long, TimeUnit, Scheduler) - Method in class io.reactivex.rxjava3.core.Flowable
-
Returns a
ConnectableFlowable
that shares a single subscription to the source Publisher and
that replays a maximum of
bufferSize
items that are emitted within a specified time window.
- replay(int, long, TimeUnit, Scheduler, boolean) - Method in class io.reactivex.rxjava3.core.Flowable
-
Returns a
ConnectableFlowable
that shares a single subscription to the source Publisher and
that replays a maximum of
bufferSize
items that are emitted within a specified time window.
- replay(long, TimeUnit) - Method in class io.reactivex.rxjava3.core.Flowable
-
Returns a
ConnectableFlowable
that shares a single subscription to the source Publisher and
replays all items emitted by that Publisher within a specified time window.
- replay(long, TimeUnit, Scheduler) - Method in class io.reactivex.rxjava3.core.Flowable
-
Returns a
ConnectableFlowable
that shares a single subscription to the source Publisher and
replays all items emitted by that Publisher within a specified time window.
- replay(long, TimeUnit, Scheduler, boolean) - Method in class io.reactivex.rxjava3.core.Flowable
-
Returns a
ConnectableFlowable
that shares a single subscription to the source Publisher and
replays all items emitted by that Publisher within a specified time window.
- replay() - Method in class io.reactivex.rxjava3.core.Observable
-
Returns a
ConnectableObservable
that shares a single subscription to the underlying ObservableSource
that will replay all of its items and notifications to any future
Observer
.
- replay(Function<? super Observable<T>, ? extends ObservableSource<R>>) - Method in class io.reactivex.rxjava3.core.Observable
-
Returns an Observable that emits items that are the results of invoking a specified selector on the items
emitted by a
ConnectableObservable
that shares a single subscription to the source ObservableSource.
- replay(Function<? super Observable<T>, ? extends ObservableSource<R>>, int) - Method in class io.reactivex.rxjava3.core.Observable
-
Returns an Observable that emits items that are the results of invoking a specified selector on items
emitted by a
ConnectableObservable
that shares a single subscription to the source ObservableSource,
replaying
bufferSize
notifications.
- replay(Function<? super Observable<T>, ? extends ObservableSource<R>>, int, boolean) - Method in class io.reactivex.rxjava3.core.Observable
-
Returns an Observable that emits items that are the results of invoking a specified selector on items
emitted by a
ConnectableObservable
that shares a single subscription to the source ObservableSource,
replaying
bufferSize
notifications.
- replay(Function<? super Observable<T>, ? extends ObservableSource<R>>, int, long, TimeUnit) - Method in class io.reactivex.rxjava3.core.Observable
-
Returns an Observable that emits items that are the results of invoking a specified selector on items
emitted by a
ConnectableObservable
that shares a single subscription to the source ObservableSource,
replaying no more than
bufferSize
items that were emitted within a specified time window.
- replay(Function<? super Observable<T>, ? extends ObservableSource<R>>, int, long, TimeUnit, Scheduler) - Method in class io.reactivex.rxjava3.core.Observable
-
Returns an Observable that emits items that are the results of invoking a specified selector on items
emitted by a
ConnectableObservable
that shares a single subscription to the source ObservableSource,
replaying no more than
bufferSize
items that were emitted within a specified time window.
- replay(Function<? super Observable<T>, ? extends ObservableSource<R>>, int, long, TimeUnit, Scheduler, boolean) - Method in class io.reactivex.rxjava3.core.Observable
-
Returns an Observable that emits items that are the results of invoking a specified selector on items
emitted by a
ConnectableObservable
that shares a single subscription to the source ObservableSource,
replaying no more than
bufferSize
items that were emitted within a specified time window.
- replay(Function<? super Observable<T>, ? extends ObservableSource<R>>, long, TimeUnit) - Method in class io.reactivex.rxjava3.core.Observable
-
Returns an Observable that emits items that are the results of invoking a specified selector on items
emitted by a
ConnectableObservable
that shares a single subscription to the source ObservableSource,
replaying all items that were emitted within a specified time window.
- replay(Function<? super Observable<T>, ? extends ObservableSource<R>>, long, TimeUnit, Scheduler) - Method in class io.reactivex.rxjava3.core.Observable
-
Returns an Observable that emits items that are the results of invoking a specified selector on items
emitted by a
ConnectableObservable
that shares a single subscription to the source ObservableSource,
replaying all items that were emitted within a specified time window.
- replay(Function<? super Observable<T>, ? extends ObservableSource<R>>, long, TimeUnit, Scheduler, boolean) - Method in class io.reactivex.rxjava3.core.Observable
-
Returns an Observable that emits items that are the results of invoking a specified selector on items
emitted by a
ConnectableObservable
that shares a single subscription to the source ObservableSource,
replaying all items that were emitted within a specified time window.
- replay(int) - Method in class io.reactivex.rxjava3.core.Observable
-
Returns a
ConnectableObservable
that shares a single subscription to the source ObservableSource that
replays at most
bufferSize
items emitted by that ObservableSource.
- replay(int, boolean) - Method in class io.reactivex.rxjava3.core.Observable
-
Returns a
ConnectableObservable
that shares a single subscription to the source ObservableSource that
replays at most
bufferSize
items emitted by that ObservableSource.
- replay(int, long, TimeUnit) - Method in class io.reactivex.rxjava3.core.Observable
-
Returns a
ConnectableObservable
that shares a single subscription to the source ObservableSource and
replays at most
bufferSize
items that were emitted during a specified time window.
- replay(int, long, TimeUnit, Scheduler) - Method in class io.reactivex.rxjava3.core.Observable
-
Returns a
ConnectableObservable
that shares a single subscription to the source ObservableSource and
that replays a maximum of
bufferSize
items that are emitted within a specified time window.
- replay(int, long, TimeUnit, Scheduler, boolean) - Method in class io.reactivex.rxjava3.core.Observable
-
Returns a
ConnectableObservable
that shares a single subscription to the source ObservableSource and
that replays a maximum of
bufferSize
items that are emitted within a specified time window.
- replay(long, TimeUnit) - Method in class io.reactivex.rxjava3.core.Observable
-
Returns a
ConnectableObservable
that shares a single subscription to the source ObservableSource and
replays all items emitted by that ObservableSource within a specified time window.
- replay(long, TimeUnit, Scheduler) - Method in class io.reactivex.rxjava3.core.Observable
-
Returns a
ConnectableObservable
that shares a single subscription to the source ObservableSource and
replays all items emitted by that ObservableSource within a specified time window.
- replay(long, TimeUnit, Scheduler, boolean) - Method in class io.reactivex.rxjava3.core.Observable
-
Returns a
ConnectableObservable
that shares a single subscription to the source ObservableSource and
replays all items emitted by that ObservableSource within a specified time window.
- ReplayProcessor<T> - Class in io.reactivex.rxjava3.processors
-
Replays events to Subscribers.
- ReplaySubject<T> - Class in io.reactivex.rxjava3.subjects
-
Replays events (in a configurable bounded or unbounded manner) to current and late
Observer
s.
- request(long) - Method in class io.reactivex.rxjava3.subscribers.DefaultSubscriber
-
Requests from the upstream Subscription.
- request(long) - Method in class io.reactivex.rxjava3.subscribers.DisposableSubscriber
-
Requests the specified amount from the upstream if its Subscription is set via
onSubscribe already.
- request(long) - Method in class io.reactivex.rxjava3.subscribers.ResourceSubscriber
-
Request the specified amount of elements from upstream.
- request(long) - Method in class io.reactivex.rxjava3.subscribers.SafeSubscriber
-
- request(long) - Method in class io.reactivex.rxjava3.subscribers.SerializedSubscriber
-
- request(long) - Method in class io.reactivex.rxjava3.subscribers.TestSubscriber
-
- requested() - Method in interface io.reactivex.rxjava3.core.FlowableEmitter
-
The current outstanding request amount.
- requestMore(long) - Method in class io.reactivex.rxjava3.subscribers.TestSubscriber
-
- reset() - Method in class io.reactivex.rxjava3.flowables.ConnectableFlowable
-
Resets this ConnectableFlowable into its fresh state if it has terminated.
- reset() - Method in class io.reactivex.rxjava3.observables.ConnectableObservable
-
Resets this ConnectableObservable into its fresh state if it has terminated
or has been disposed.
- reset() - Static method in class io.reactivex.rxjava3.plugins.RxJavaPlugins
-
Removes all handlers and resets to default behavior.
- ResourceCompletableObserver - Class in io.reactivex.rxjava3.observers
-
An abstract
CompletableObserver
that allows asynchronous cancellation of its subscription and associated resources.
- ResourceCompletableObserver() - Constructor for class io.reactivex.rxjava3.observers.ResourceCompletableObserver
-
- ResourceMaybeObserver<T> - Class in io.reactivex.rxjava3.observers
-
An abstract
MaybeObserver
that allows asynchronous cancellation of its subscription and associated resources.
- ResourceMaybeObserver() - Constructor for class io.reactivex.rxjava3.observers.ResourceMaybeObserver
-
- ResourceObserver<T> - Class in io.reactivex.rxjava3.observers
-
An abstract
Observer
that allows asynchronous cancellation of its subscription and associated resources.
- ResourceObserver() - Constructor for class io.reactivex.rxjava3.observers.ResourceObserver
-
- ResourceSingleObserver<T> - Class in io.reactivex.rxjava3.observers
-
An abstract
SingleObserver
that allows asynchronous cancellation of its subscription
and the associated resources.
- ResourceSingleObserver() - Constructor for class io.reactivex.rxjava3.observers.ResourceSingleObserver
-
- ResourceSubscriber<T> - Class in io.reactivex.rxjava3.subscribers
-
An abstract Subscriber that allows asynchronous cancellation of its
subscription and associated resources.
- ResourceSubscriber() - Constructor for class io.reactivex.rxjava3.subscribers.ResourceSubscriber
-
- retry() - Method in class io.reactivex.rxjava3.core.Completable
-
Returns a Completable that retries this Completable as long as it emits an onError event.
- retry(BiPredicate<? super Integer, ? super Throwable>) - Method in class io.reactivex.rxjava3.core.Completable
-
Returns a Completable that retries this Completable in case of an error as long as the predicate
returns true.
- retry(long) - Method in class io.reactivex.rxjava3.core.Completable
-
Returns a Completable that when this Completable emits an error, retries at most the given
number of times before giving up and emitting the last error.
- retry(long, Predicate<? super Throwable>) - Method in class io.reactivex.rxjava3.core.Completable
-
Returns a Completable that when this Completable emits an error, retries at most times
or until the predicate returns false, whichever happens first and emitting the last error.
- retry(Predicate<? super Throwable>) - Method in class io.reactivex.rxjava3.core.Completable
-
Returns a Completable that when this Completable emits an error, calls the given predicate with
the latest exception to decide whether to resubscribe to this or not.
- retry() - Method in class io.reactivex.rxjava3.core.Flowable
-
Returns a Flowable that mirrors the source Publisher, resubscribing to it if it calls onError
(infinite retry count).
- retry(BiPredicate<? super Integer, ? super Throwable>) - Method in class io.reactivex.rxjava3.core.Flowable
-
Returns a Flowable that mirrors the source Publisher, resubscribing to it if it calls onError
and the predicate returns true for that specific exception and retry count.
- retry(long) - Method in class io.reactivex.rxjava3.core.Flowable
-
Returns a Flowable that mirrors the source Publisher, resubscribing to it if it calls onError
up to a specified number of retries.
- retry(long, Predicate<? super Throwable>) - Method in class io.reactivex.rxjava3.core.Flowable
-
Retries at most times or until the predicate returns false, whichever happens first.
- retry(Predicate<? super Throwable>) - Method in class io.reactivex.rxjava3.core.Flowable
-
Retries the current Flowable if the predicate returns true.
- retry() - Method in class io.reactivex.rxjava3.core.Maybe
-
Returns a Maybe that mirrors the source Maybe, resubscribing to it if it calls onError
(infinite retry count).
- retry(BiPredicate<? super Integer, ? super Throwable>) - Method in class io.reactivex.rxjava3.core.Maybe
-
Returns a Maybe that mirrors the source Maybe, resubscribing to it if it calls onError
and the predicate returns true for that specific exception and retry count.
- retry(long) - Method in class io.reactivex.rxjava3.core.Maybe
-
Returns a Maybe that mirrors the source Maybe, resubscribing to it if it calls onError
up to a specified number of retries.
- retry(long, Predicate<? super Throwable>) - Method in class io.reactivex.rxjava3.core.Maybe
-
Retries at most times or until the predicate returns false, whichever happens first.
- retry(Predicate<? super Throwable>) - Method in class io.reactivex.rxjava3.core.Maybe
-
Retries the current Maybe if it fails and the predicate returns true.
- retry() - Method in class io.reactivex.rxjava3.core.Observable
-
Returns an Observable that mirrors the source ObservableSource, resubscribing to it if it calls onError
(infinite retry count).
- retry(BiPredicate<? super Integer, ? super Throwable>) - Method in class io.reactivex.rxjava3.core.Observable
-
Returns an Observable that mirrors the source ObservableSource, resubscribing to it if it calls onError
and the predicate returns true for that specific exception and retry count.
- retry(long) - Method in class io.reactivex.rxjava3.core.Observable
-
Returns an Observable that mirrors the source ObservableSource, resubscribing to it if it calls onError
up to a specified number of retries.
- retry(long, Predicate<? super Throwable>) - Method in class io.reactivex.rxjava3.core.Observable
-
Retries at most times or until the predicate returns false, whichever happens first.
- retry(Predicate<? super Throwable>) - Method in class io.reactivex.rxjava3.core.Observable
-
Retries the current Observable if the predicate returns true.
- retry() - Method in class io.reactivex.rxjava3.core.Single
-
Repeatedly re-subscribes to the current Single indefinitely if it fails with an onError.
- retry(long) - Method in class io.reactivex.rxjava3.core.Single
-
Repeatedly re-subscribe at most the specified times to the current Single
if it fails with an onError.
- retry(BiPredicate<? super Integer, ? super Throwable>) - Method in class io.reactivex.rxjava3.core.Single
-
Re-subscribe to the current Single if the given predicate returns true when the Single fails
with an onError.
- retry(long, Predicate<? super Throwable>) - Method in class io.reactivex.rxjava3.core.Single
-
Repeatedly re-subscribe at most times or until the predicate returns false, whichever happens first
if it fails with an onError.
- retry(Predicate<? super Throwable>) - Method in class io.reactivex.rxjava3.core.Single
-
Re-subscribe to the current Single if the given predicate returns true when the Single fails
with an onError.
- retryUntil(BooleanSupplier) - Method in class io.reactivex.rxjava3.core.Flowable
-
Retries until the given stop function returns true.
- retryUntil(BooleanSupplier) - Method in class io.reactivex.rxjava3.core.Maybe
-
Retries until the given stop function returns true.
- retryUntil(BooleanSupplier) - Method in class io.reactivex.rxjava3.core.Observable
-
Retries until the given stop function returns true.
- retryWhen(Function<? super Flowable<Throwable>, ? extends Publisher<?>>) - Method in class io.reactivex.rxjava3.core.Completable
-
Returns a Completable which given a Publisher and when this Completable emits an error, delivers
that error through a Flowable and the Publisher should signal a value indicating a retry in response
or a terminal event indicating a termination.
- retryWhen(Function<? super Flowable<Throwable>, ? extends Publisher<?>>) - Method in class io.reactivex.rxjava3.core.Flowable
-
Returns a Flowable that emits the same values as the source Publisher with the exception of an
onError
.
- retryWhen(Function<? super Flowable<Throwable>, ? extends Publisher<?>>) - Method in class io.reactivex.rxjava3.core.Maybe
-
Returns a Maybe that emits the same values as the source Maybe with the exception of an
onError
.
- retryWhen(Function<? super Observable<Throwable>, ? extends ObservableSource<?>>) - Method in class io.reactivex.rxjava3.core.Observable
-
Returns an Observable that emits the same values as the source ObservableSource with the exception of an
onError
.
- retryWhen(Function<? super Flowable<Throwable>, ? extends Publisher<?>>) - Method in class io.reactivex.rxjava3.core.Single
-
Re-subscribes to the current Single if and when the Publisher returned by the handler
function signals a value.
- run() - Method in interface io.reactivex.rxjava3.functions.Action
-
Runs the action and optionally throws a checked exception.
- runOn(Scheduler) - Method in class io.reactivex.rxjava3.parallel.ParallelFlowable
-
Specifies where each 'rail' will observe its incoming values with
no work-stealing and default prefetch amount.
- runOn(Scheduler, int) - Method in class io.reactivex.rxjava3.parallel.ParallelFlowable
-
Specifies where each 'rail' will observe its incoming values with
possibly work-stealing and a given prefetch amount.
- RxJavaPlugins - Class in io.reactivex.rxjava3.plugins
-
Utility class to inject handlers to certain standard RxJava operations.
- SafeObserver<T> - Class in io.reactivex.rxjava3.observers
-
Wraps another Subscriber and ensures all onXXX methods conform the protocol
(except the requirement for serialized access).
- SafeObserver(Observer<? super T>) - Constructor for class io.reactivex.rxjava3.observers.SafeObserver
-
Constructs a SafeObserver by wrapping the given actual Observer.
- safeSubscribe(Subscriber<? super T>) - Method in class io.reactivex.rxjava3.core.Flowable
-
Subscribes to the current Flowable and wraps the given Subscriber into a SafeSubscriber
(if not already a SafeSubscriber) that
deals with exceptions thrown by a misbehaving Subscriber (that doesn't follow the
Reactive Streams specification).
- safeSubscribe(Observer<? super T>) - Method in class io.reactivex.rxjava3.core.Observable
-
Subscribes to the current Observable and wraps the given Observer into a SafeObserver
(if not already a SafeObserver) that
deals with exceptions thrown by a misbehaving Observer (that doesn't follow the
Reactive-Streams specification).
- SafeSubscriber<T> - Class in io.reactivex.rxjava3.subscribers
-
Wraps another Subscriber and ensures all onXXX methods conform the protocol
(except the requirement for serialized access).
- SafeSubscriber(Subscriber<? super T>) - Constructor for class io.reactivex.rxjava3.subscribers.SafeSubscriber
-
Constructs a SafeSubscriber by wrapping the given actual Subscriber.
- sample(long, TimeUnit) - Method in class io.reactivex.rxjava3.core.Flowable
-
Returns a Flowable that emits the most recently emitted item (if any) emitted by the source Publisher
within periodic time intervals.
- sample(long, TimeUnit, boolean) - Method in class io.reactivex.rxjava3.core.Flowable
-
Returns a Flowable that emits the most recently emitted item (if any) emitted by the source Publisher
within periodic time intervals and optionally emit the very last upstream item when the upstream completes.
- sample(long, TimeUnit, Scheduler) - Method in class io.reactivex.rxjava3.core.Flowable
-
Returns a Flowable that emits the most recently emitted item (if any) emitted by the source Publisher
within periodic time intervals, where the intervals are defined on a particular Scheduler.
- sample(long, TimeUnit, Scheduler, boolean) - Method in class io.reactivex.rxjava3.core.Flowable
-
Returns a Flowable that emits the most recently emitted item (if any) emitted by the source Publisher
within periodic time intervals, where the intervals are defined on a particular Scheduler
and optionally emit the very last upstream item when the upstream completes.
- sample(Publisher<U>) - Method in class io.reactivex.rxjava3.core.Flowable
-
Returns a Flowable that, when the specified sampler
Publisher emits an item or completes,
emits the most recently emitted item (if any) emitted by the source Publisher since the previous
emission from the sampler
Publisher.
- sample(Publisher<U>, boolean) - Method in class io.reactivex.rxjava3.core.Flowable
-
Returns a Flowable that, when the specified sampler
Publisher emits an item or completes,
emits the most recently emitted item (if any) emitted by the source Publisher since the previous
emission from the sampler
Publisher
and optionally emit the very last upstream item when the upstream or other Publisher complete.
- sample(long, TimeUnit) - Method in class io.reactivex.rxjava3.core.Observable
-
Returns an Observable that emits the most recently emitted item (if any) emitted by the source ObservableSource
within periodic time intervals.
- sample(long, TimeUnit, boolean) - Method in class io.reactivex.rxjava3.core.Observable
-
Returns an Observable that emits the most recently emitted item (if any) emitted by the source ObservableSource
within periodic time intervals and optionally emit the very last upstream item when the upstream completes.
- sample(long, TimeUnit, Scheduler) - Method in class io.reactivex.rxjava3.core.Observable
-
Returns an Observable that emits the most recently emitted item (if any) emitted by the source ObservableSource
within periodic time intervals, where the intervals are defined on a particular Scheduler.
- sample(long, TimeUnit, Scheduler, boolean) - Method in class io.reactivex.rxjava3.core.Observable
-
Returns an Observable that emits the most recently emitted item (if any) emitted by the source ObservableSource
within periodic time intervals, where the intervals are defined on a particular Scheduler
and optionally emit the very last upstream item when the upstream completes.
- sample(ObservableSource<U>) - Method in class io.reactivex.rxjava3.core.Observable
-
Returns an Observable that, when the specified sampler
ObservableSource emits an item or completes,
emits the most recently emitted item (if any) emitted by the source ObservableSource since the previous
emission from the sampler
ObservableSource.
- sample(ObservableSource<U>, boolean) - Method in class io.reactivex.rxjava3.core.Observable
-
Returns an Observable that, when the specified sampler
ObservableSource emits an item or completes,
emits the most recently emitted item (if any) emitted by the source ObservableSource since the previous
emission from the sampler
ObservableSource
and optionally emit the very last upstream item when the upstream or other ObservableSource complete.
- scan(BiFunction<T, T, T>) - Method in class io.reactivex.rxjava3.core.Flowable
-
Returns a Flowable that applies a specified accumulator function to the first item emitted by a source
Publisher, then feeds the result of that function along with the second item emitted by the source
Publisher into the same function, and so on until all items have been emitted by the source Publisher,
emitting the result of each of these iterations.
- scan(R, BiFunction<R, ? super T, R>) - Method in class io.reactivex.rxjava3.core.Flowable
-
Returns a Flowable that applies a specified accumulator function to the first item emitted by a source
Publisher and a seed value, then feeds the result of that function along with the second item emitted by
the source Publisher into the same function, and so on until all items have been emitted by the source
Publisher, emitting the result of each of these iterations.
- scan(BiFunction<T, T, T>) - Method in class io.reactivex.rxjava3.core.Observable
-
Returns an Observable that applies a specified accumulator function to the first item emitted by a source
ObservableSource, then feeds the result of that function along with the second item emitted by the source
ObservableSource into the same function, and so on until all items have been emitted by the source ObservableSource,
emitting the result of each of these iterations.
- scan(R, BiFunction<R, ? super T, R>) - Method in class io.reactivex.rxjava3.core.Observable
-
Returns an Observable that applies a specified accumulator function to the first item emitted by a source
ObservableSource and a seed value, then feeds the result of that function along with the second item emitted by
the source ObservableSource into the same function, and so on until all items have been emitted by the source
ObservableSource, emitting the result of each of these iterations.
- scanWith(Supplier<R>, BiFunction<R, ? super T, R>) - Method in class io.reactivex.rxjava3.core.Flowable
-
Returns a Flowable that applies a specified accumulator function to the first item emitted by a source
Publisher and a seed value, then feeds the result of that function along with the second item emitted by
the source Publisher into the same function, and so on until all items have been emitted by the source
Publisher, emitting the result of each of these iterations.
- scanWith(Supplier<R>, BiFunction<R, ? super T, R>) - Method in class io.reactivex.rxjava3.core.Observable
-
Returns an Observable that applies a specified accumulator function to the first item emitted by a source
ObservableSource and a seed value, then feeds the result of that function along with the second item emitted by
the source ObservableSource into the same function, and so on until all items have been emitted by the source
ObservableSource, emitting the result of each of these iterations.
- schedule(Runnable) - Method in class io.reactivex.rxjava3.core.Scheduler.Worker
-
Schedules a Runnable for execution without any time delay.
- schedule(Runnable, long, TimeUnit) - Method in class io.reactivex.rxjava3.core.Scheduler.Worker
-
Schedules an Runnable for execution at some point in the future specified by a time delay
relative to the current time.
- scheduleDirect(Runnable) - Method in class io.reactivex.rxjava3.core.Scheduler
-
Schedules the given task on this Scheduler without any time delay.
- scheduleDirect(Runnable, long, TimeUnit) - Method in class io.reactivex.rxjava3.core.Scheduler
-
Schedules the execution of the given task with the given time delay.
- schedulePeriodically(Runnable, long, long, TimeUnit) - Method in class io.reactivex.rxjava3.core.Scheduler.Worker
-
Schedules a periodic execution of the given task with the given initial time delay and repeat period.
- schedulePeriodicallyDirect(Runnable, long, long, TimeUnit) - Method in class io.reactivex.rxjava3.core.Scheduler
-
Schedules a periodic execution of the given task with the given initial time delay and repeat period.
- Scheduler - Class in io.reactivex.rxjava3.core
-
A
Scheduler
is an object that specifies an API for scheduling
units of work provided in the form of
Runnable
s to be
executed without delay (effectively as soon as possible), after a specified time delay or periodically
and represents an abstraction over an asynchronous boundary that ensures
these units of work get executed by some underlying task-execution scheme
(such as custom Threads, event loop,
Executor
or Actor system)
with some uniform properties and guarantees regardless of the particular underlying
scheme.
- Scheduler() - Constructor for class io.reactivex.rxjava3.core.Scheduler
-
- Scheduler.Worker - Class in io.reactivex.rxjava3.core
-
Represents an isolated, sequential worker of a parent Scheduler for executing
Runnable
tasks on
an underlying task-execution scheme (such as custom Threads, event loop,
Executor
or Actor system).
- SchedulerRunnableIntrospection - Interface in io.reactivex.rxjava3.schedulers
-
- Schedulers - Class in io.reactivex.rxjava3.schedulers
-
Static factory methods for returning standard Scheduler instances.
- SchedulerSupport - Annotation Type in io.reactivex.rxjava3.annotations
-
Indicates what kind of scheduler the class or method uses.
- sequenceEqual(Publisher<? extends T>, Publisher<? extends T>) - Static method in class io.reactivex.rxjava3.core.Flowable
-
Returns a Single that emits a Boolean value that indicates whether two Publisher sequences are the
same by comparing the items emitted by each Publisher pairwise.
- sequenceEqual(Publisher<? extends T>, Publisher<? extends T>, BiPredicate<? super T, ? super T>) - Static method in class io.reactivex.rxjava3.core.Flowable
-
Returns a Single that emits a Boolean value that indicates whether two Publisher sequences are the
same by comparing the items emitted by each Publisher pairwise based on the results of a specified
equality function.
- sequenceEqual(Publisher<? extends T>, Publisher<? extends T>, BiPredicate<? super T, ? super T>, int) - Static method in class io.reactivex.rxjava3.core.Flowable
-
Returns a Single that emits a Boolean value that indicates whether two Publisher sequences are the
same by comparing the items emitted by each Publisher pairwise based on the results of a specified
equality function.
- sequenceEqual(Publisher<? extends T>, Publisher<? extends T>, int) - Static method in class io.reactivex.rxjava3.core.Flowable
-
Returns a Single that emits a Boolean value that indicates whether two Publisher sequences are the
same by comparing the items emitted by each Publisher pairwise.
- sequenceEqual(MaybeSource<? extends T>, MaybeSource<? extends T>) - Static method in class io.reactivex.rxjava3.core.Maybe
-
Returns a Single that emits a Boolean value that indicates whether two MaybeSource sequences are the
same by comparing the items emitted by each MaybeSource pairwise.
- sequenceEqual(MaybeSource<? extends T>, MaybeSource<? extends T>, BiPredicate<? super T, ? super T>) - Static method in class io.reactivex.rxjava3.core.Maybe
-
Returns a Single that emits a Boolean value that indicates whether two MaybeSources are the
same by comparing the items emitted by each MaybeSource pairwise based on the results of a specified
equality function.
- sequenceEqual(ObservableSource<? extends T>, ObservableSource<? extends T>) - Static method in class io.reactivex.rxjava3.core.Observable
-
Returns a Single that emits a Boolean value that indicates whether two ObservableSource sequences are the
same by comparing the items emitted by each ObservableSource pairwise.
- sequenceEqual(ObservableSource<? extends T>, ObservableSource<? extends T>, BiPredicate<? super T, ? super T>) - Static method in class io.reactivex.rxjava3.core.Observable
-
Returns a Single that emits a Boolean value that indicates whether two ObservableSource sequences are the
same by comparing the items emitted by each ObservableSource pairwise based on the results of a specified
equality function.
- sequenceEqual(ObservableSource<? extends T>, ObservableSource<? extends T>, BiPredicate<? super T, ? super T>, int) - Static method in class io.reactivex.rxjava3.core.Observable
-
Returns a Single that emits a Boolean value that indicates whether two ObservableSource sequences are the
same by comparing the items emitted by each ObservableSource pairwise based on the results of a specified
equality function.
- sequenceEqual(ObservableSource<? extends T>, ObservableSource<? extends T>, int) - Static method in class io.reactivex.rxjava3.core.Observable
-
Returns a Single that emits a Boolean value that indicates whether two ObservableSource sequences are the
same by comparing the items emitted by each ObservableSource pairwise.
- sequential() - Method in class io.reactivex.rxjava3.parallel.ParallelFlowable
-
Merges the values from each 'rail' in a round-robin or same-order fashion and
exposes it as a regular Publisher sequence, running with a default prefetch value
for the rails.
- sequential(int) - Method in class io.reactivex.rxjava3.parallel.ParallelFlowable
-
Merges the values from each 'rail' in a round-robin or same-order fashion and
exposes it as a regular Publisher sequence, running with a give prefetch value
for the rails.
- sequentialDelayError() - Method in class io.reactivex.rxjava3.parallel.ParallelFlowable
-
Merges the values from each 'rail' in a round-robin or same-order fashion and
exposes it as a regular Flowable sequence, running with a default prefetch value
for the rails and delaying errors from all rails till all terminate.
- sequentialDelayError(int) - Method in class io.reactivex.rxjava3.parallel.ParallelFlowable
-
Merges the values from each 'rail' in a round-robin or same-order fashion and
exposes it as a regular Publisher sequence, running with a give prefetch value
for the rails and delaying errors from all rails till all terminate.
- SerialDisposable - Class in io.reactivex.rxjava3.disposables
-
A Disposable container that allows atomically updating/replacing the contained
Disposable with another Disposable, disposing the old one when updating plus
handling the disposition when the container itself is disposed.
- SerialDisposable() - Constructor for class io.reactivex.rxjava3.disposables.SerialDisposable
-
Constructs an empty SerialDisposable.
- SerialDisposable(Disposable) - Constructor for class io.reactivex.rxjava3.disposables.SerialDisposable
-
Constructs a SerialDisposable with the given initial Disposable instance.
- serialize() - Method in class io.reactivex.rxjava3.core.Flowable
-
Forces a Publisher's emissions and notifications to be serialized and for it to obey
the Publisher contract in other ways.
- serialize() - Method in interface io.reactivex.rxjava3.core.FlowableEmitter
-
Ensures that calls to onNext, onError and onComplete are properly serialized.
- serialize() - Method in class io.reactivex.rxjava3.core.Observable
-
- serialize() - Method in interface io.reactivex.rxjava3.core.ObservableEmitter
-
Ensures that calls to onNext, onError and onComplete are properly serialized.
- SerializedObserver<T> - Class in io.reactivex.rxjava3.observers
-
Serializes access to the onNext, onError and onComplete methods of another Observer.
- SerializedObserver(Observer<? super T>) - Constructor for class io.reactivex.rxjava3.observers.SerializedObserver
-
Construct a SerializedObserver by wrapping the given actual Observer.
- SerializedObserver(Observer<? super T>, boolean) - Constructor for class io.reactivex.rxjava3.observers.SerializedObserver
-
Construct a SerializedObserver by wrapping the given actual Observer and
optionally delaying the errors till all regular values have been emitted
from the internal buffer.
- SerializedSubscriber<T> - Class in io.reactivex.rxjava3.subscribers
-
Serializes access to the onNext, onError and onComplete methods of another Subscriber.
- SerializedSubscriber(Subscriber<? super T>) - Constructor for class io.reactivex.rxjava3.subscribers.SerializedSubscriber
-
Construct a SerializedSubscriber by wrapping the given actual Subscriber.
- SerializedSubscriber(Subscriber<? super T>, boolean) - Constructor for class io.reactivex.rxjava3.subscribers.SerializedSubscriber
-
Construct a SerializedSubscriber by wrapping the given actual Observer and
optionally delaying the errors till all regular values have been emitted
from the internal buffer.
- set(Disposable) - Method in class io.reactivex.rxjava3.disposables.SerialDisposable
-
Atomically: set the next disposable on this container and dispose the previous
one (if any) or dispose next if the container has been disposed.
- setCancellable(Cancellable) - Method in interface io.reactivex.rxjava3.core.CompletableEmitter
-
- setCancellable(Cancellable) - Method in interface io.reactivex.rxjava3.core.FlowableEmitter
-
- setCancellable(Cancellable) - Method in interface io.reactivex.rxjava3.core.MaybeEmitter
-
- setCancellable(Cancellable) - Method in interface io.reactivex.rxjava3.core.ObservableEmitter
-
- setCancellable(Cancellable) - Method in interface io.reactivex.rxjava3.core.SingleEmitter
-
- setComputationSchedulerHandler(Function<? super Scheduler, ? extends Scheduler>) - Static method in class io.reactivex.rxjava3.plugins.RxJavaPlugins
-
Sets the specific hook function.
- setDisposable(Disposable) - Method in interface io.reactivex.rxjava3.core.CompletableEmitter
-
- setDisposable(Disposable) - Method in interface io.reactivex.rxjava3.core.FlowableEmitter
-
- setDisposable(Disposable) - Method in interface io.reactivex.rxjava3.core.MaybeEmitter
-
- setDisposable(Disposable) - Method in interface io.reactivex.rxjava3.core.ObservableEmitter
-
- setDisposable(Disposable) - Method in interface io.reactivex.rxjava3.core.SingleEmitter
-
Sets a Disposable on this emitter; any previous Disposable
or Cancellable will be disposed/cancelled.
- setErrorHandler(Consumer<? super Throwable>) - Static method in class io.reactivex.rxjava3.plugins.RxJavaPlugins
-
Sets the specific hook function.
- setFailOnNonBlockingScheduler(boolean) - Static method in class io.reactivex.rxjava3.plugins.RxJavaPlugins
-
Enables or disables the blockingX operators to fail
with an IllegalStateException on a non-blocking
scheduler such as computation or single.
- setInitComputationSchedulerHandler(Function<? super Supplier<Scheduler>, ? extends Scheduler>) - Static method in class io.reactivex.rxjava3.plugins.RxJavaPlugins
-
Sets the specific hook function.
- setInitIoSchedulerHandler(Function<? super Supplier<Scheduler>, ? extends Scheduler>) - Static method in class io.reactivex.rxjava3.plugins.RxJavaPlugins
-
Sets the specific hook function.
- setInitNewThreadSchedulerHandler(Function<? super Supplier<Scheduler>, ? extends Scheduler>) - Static method in class io.reactivex.rxjava3.plugins.RxJavaPlugins
-
Sets the specific hook function.
- setInitSingleSchedulerHandler(Function<? super Supplier<Scheduler>, ? extends Scheduler>) - Static method in class io.reactivex.rxjava3.plugins.RxJavaPlugins
-
Sets the specific hook function.
- setIoSchedulerHandler(Function<? super Scheduler, ? extends Scheduler>) - Static method in class io.reactivex.rxjava3.plugins.RxJavaPlugins
-
Sets the specific hook function.
- setNewThreadSchedulerHandler(Function<? super Scheduler, ? extends Scheduler>) - Static method in class io.reactivex.rxjava3.plugins.RxJavaPlugins
-
Sets the specific hook function.
- setOnBeforeBlocking(BooleanSupplier) - Static method in class io.reactivex.rxjava3.plugins.RxJavaPlugins
-
Set the handler that is called when an operator attempts a blocking
await; the handler should return true to prevent the blocking
and to signal an IllegalStateException instead.
- setOnCompletableAssembly(Function<? super Completable, ? extends Completable>) - Static method in class io.reactivex.rxjava3.plugins.RxJavaPlugins
-
Sets the specific hook function.
- setOnCompletableSubscribe(BiFunction<? super Completable, ? super CompletableObserver, ? extends CompletableObserver>) - Static method in class io.reactivex.rxjava3.plugins.RxJavaPlugins
-
Sets the specific hook function.
- setOnConnectableFlowableAssembly(Function<? super ConnectableFlowable, ? extends ConnectableFlowable>) - Static method in class io.reactivex.rxjava3.plugins.RxJavaPlugins
-
Sets the specific hook function.
- setOnConnectableObservableAssembly(Function<? super ConnectableObservable, ? extends ConnectableObservable>) - Static method in class io.reactivex.rxjava3.plugins.RxJavaPlugins
-
Sets the specific hook function.
- setOnFlowableAssembly(Function<? super Flowable, ? extends Flowable>) - Static method in class io.reactivex.rxjava3.plugins.RxJavaPlugins
-
Sets the specific hook function.
- setOnFlowableSubscribe(BiFunction<? super Flowable, ? super Subscriber, ? extends Subscriber>) - Static method in class io.reactivex.rxjava3.plugins.RxJavaPlugins
-
Sets the specific hook function.
- setOnMaybeAssembly(Function<? super Maybe, ? extends Maybe>) - Static method in class io.reactivex.rxjava3.plugins.RxJavaPlugins
-
Sets the specific hook function.
- setOnMaybeSubscribe(BiFunction<? super Maybe, MaybeObserver, ? extends MaybeObserver>) - Static method in class io.reactivex.rxjava3.plugins.RxJavaPlugins
-
Sets the specific hook function.
- setOnObservableAssembly(Function<? super Observable, ? extends Observable>) - Static method in class io.reactivex.rxjava3.plugins.RxJavaPlugins
-
Sets the specific hook function.
- setOnObservableSubscribe(BiFunction<? super Observable, ? super Observer, ? extends Observer>) - Static method in class io.reactivex.rxjava3.plugins.RxJavaPlugins
-
Sets the specific hook function.
- setOnParallelAssembly(Function<? super ParallelFlowable, ? extends ParallelFlowable>) - Static method in class io.reactivex.rxjava3.plugins.RxJavaPlugins
-
Sets the specific hook function.
- setOnSingleAssembly(Function<? super Single, ? extends Single>) - Static method in class io.reactivex.rxjava3.plugins.RxJavaPlugins
-
Sets the specific hook function.
- setOnSingleSubscribe(BiFunction<? super Single, ? super SingleObserver, ? extends SingleObserver>) - Static method in class io.reactivex.rxjava3.plugins.RxJavaPlugins
-
Sets the specific hook function.
- setScheduleHandler(Function<? super Runnable, ? extends Runnable>) - Static method in class io.reactivex.rxjava3.plugins.RxJavaPlugins
-
Sets the specific hook function.
- setSingleSchedulerHandler(Function<? super Scheduler, ? extends Scheduler>) - Static method in class io.reactivex.rxjava3.plugins.RxJavaPlugins
-
Sets the specific hook function.
- share() - Method in class io.reactivex.rxjava3.core.Flowable
-
Returns a new
Publisher
that multicasts (and shares a single subscription to) the original
Publisher
.
- share() - Method in class io.reactivex.rxjava3.core.Observable
-
- shutdown() - Method in class io.reactivex.rxjava3.core.Scheduler
-
Instructs the Scheduler instance to stop threads,
stop accepting tasks on any outstanding
Scheduler.Worker
instances
and clean up any associated resources with this Scheduler.
- shutdown() - Static method in class io.reactivex.rxjava3.schedulers.Schedulers
-
Shuts down the standard Schedulers.
- SINGLE - Static variable in annotation type io.reactivex.rxjava3.annotations.SchedulerSupport
-
The operator/class runs on RxJava's
single scheduler
or takes timing information from it.
- single(T) - Method in class io.reactivex.rxjava3.core.Flowable
-
Returns a Single that emits the single item emitted by the source Publisher, if that Publisher
emits only a single item, or a default item if the source Publisher emits no items.
- single(T) - Method in class io.reactivex.rxjava3.core.Observable
-
Returns a Single that emits the single item emitted by this Observable, if this Observable
emits only a single item, or a default item if the source ObservableSource emits no items.
- Single<T> - Class in io.reactivex.rxjava3.core
-
The Single
class implements the Reactive Pattern for a single value response.
- Single() - Constructor for class io.reactivex.rxjava3.core.Single
-
- single() - Static method in class io.reactivex.rxjava3.schedulers.Schedulers
-
Returns a default, shared, single-thread-backed
Scheduler
instance for work
requiring strongly-sequential execution on the same background thread.
- SingleConverter<T,R> - Interface in io.reactivex.rxjava3.core
-
- singleElement() - Method in class io.reactivex.rxjava3.core.Flowable
-
Returns a Maybe that completes if this Flowable is empty, signals one item if this Flowable
signals exactly one item or signals an IllegalArgumentException
if this Flowable signals
more than one item.
- singleElement() - Method in class io.reactivex.rxjava3.core.Observable
-
Returns a Maybe that completes if this Observable is empty or emits the single item emitted by this Observable,
or signals an IllegalArgumentException
if this Observable emits more than one item.
- SingleEmitter<T> - Interface in io.reactivex.rxjava3.core
-
Abstraction over an RxJava
SingleObserver
that allows associating
a resource with it.
- SingleObserver<T> - Interface in io.reactivex.rxjava3.core
-
Provides a mechanism for receiving push-based notification of a single value or an error.
- SingleOnSubscribe<T> - Interface in io.reactivex.rxjava3.core
-
A functional interface that has a
subscribe()
method that receives
an instance of a
SingleEmitter
instance that allows pushing
an event in a cancellation-safe manner.
- SingleOperator<Downstream,Upstream> - Interface in io.reactivex.rxjava3.core
-
Interface to map/wrap a downstream observer to an upstream observer.
- singleOrError() - Method in class io.reactivex.rxjava3.core.Flowable
-
Returns a Single that emits the single item emitted by this Flowable, if this Flowable
emits only a single item, otherwise
if this Flowable completes without emitting any items a
NoSuchElementException
will be signaled and
if this Flowable emits more than one item, an
IllegalArgumentException
will be signaled.
- singleOrError() - Method in class io.reactivex.rxjava3.core.Observable
-
Returns a Single that emits the single item emitted by this Observable if this Observable
emits only a single item, otherwise
if this Observable completes without emitting any items or emits more than one item a
NoSuchElementException
or
IllegalArgumentException
will be signalled respectively.
- SingleSource<T> - Interface in io.reactivex.rxjava3.core
-
- SingleSubject<T> - Class in io.reactivex.rxjava3.subjects
-
Represents a hot Single-like source and consumer of events similar to Subjects.
- SingleTransformer<Upstream,Downstream> - Interface in io.reactivex.rxjava3.core
-
Interface to compose Singles.
- size() - Method in class io.reactivex.rxjava3.disposables.CompositeDisposable
-
Returns the number of currently held Disposables.
- size() - Method in exception io.reactivex.rxjava3.exceptions.CompositeException
-
Returns the number of suppressed exceptions.
- skip(long) - Method in class io.reactivex.rxjava3.core.Flowable
-
Returns a Flowable that skips the first count
items emitted by the source Publisher and emits
the remainder.
- skip(long, TimeUnit) - Method in class io.reactivex.rxjava3.core.Flowable
-
Returns a Flowable that skips values emitted by the source Publisher before a specified time window
elapses.
- skip(long, TimeUnit, Scheduler) - Method in class io.reactivex.rxjava3.core.Flowable
-
Returns a Flowable that skips values emitted by the source Publisher before a specified time window
on a specified
Scheduler
elapses.
- skip(long) - Method in class io.reactivex.rxjava3.core.Observable
-
Returns an Observable that skips the first count
items emitted by the source ObservableSource and emits
the remainder.
- skip(long, TimeUnit) - Method in class io.reactivex.rxjava3.core.Observable
-
Returns an Observable that skips values emitted by the source ObservableSource before a specified time window
elapses.
- skip(long, TimeUnit, Scheduler) - Method in class io.reactivex.rxjava3.core.Observable
-
Returns an Observable that skips values emitted by the source ObservableSource before a specified time window
on a specified
Scheduler
elapses.
- skipLast(int) - Method in class io.reactivex.rxjava3.core.Flowable
-
Returns a Flowable that drops a specified number of items from the end of the sequence emitted by the
source Publisher.
- skipLast(long, TimeUnit) - Method in class io.reactivex.rxjava3.core.Flowable
-
Returns a Flowable that drops items emitted by the source Publisher during a specified time window
before the source completes.
- skipLast(long, TimeUnit, boolean) - Method in class io.reactivex.rxjava3.core.Flowable
-
Returns a Flowable that drops items emitted by the source Publisher during a specified time window
before the source completes.
- skipLast(long, TimeUnit, Scheduler) - Method in class io.reactivex.rxjava3.core.Flowable
-
Returns a Flowable that drops items emitted by the source Publisher during a specified time window
(defined on a specified scheduler) before the source completes.
- skipLast(long, TimeUnit, Scheduler, boolean) - Method in class io.reactivex.rxjava3.core.Flowable
-
Returns a Flowable that drops items emitted by the source Publisher during a specified time window
(defined on a specified scheduler) before the source completes.
- skipLast(long, TimeUnit, Scheduler, boolean, int) - Method in class io.reactivex.rxjava3.core.Flowable
-
Returns a Flowable that drops items emitted by the source Publisher during a specified time window
(defined on a specified scheduler) before the source completes.
- skipLast(int) - Method in class io.reactivex.rxjava3.core.Observable
-
Returns an Observable that drops a specified number of items from the end of the sequence emitted by the
source ObservableSource.
- skipLast(long, TimeUnit) - Method in class io.reactivex.rxjava3.core.Observable
-
Returns an Observable that drops items emitted by the source ObservableSource during a specified time window
before the source completes.
- skipLast(long, TimeUnit, boolean) - Method in class io.reactivex.rxjava3.core.Observable
-
Returns an Observable that drops items emitted by the source ObservableSource during a specified time window
before the source completes.
- skipLast(long, TimeUnit, Scheduler) - Method in class io.reactivex.rxjava3.core.Observable
-
Returns an Observable that drops items emitted by the source ObservableSource during a specified time window
(defined on a specified scheduler) before the source completes.
- skipLast(long, TimeUnit, Scheduler, boolean) - Method in class io.reactivex.rxjava3.core.Observable
-
Returns an Observable that drops items emitted by the source ObservableSource during a specified time window
(defined on a specified scheduler) before the source completes.
- skipLast(long, TimeUnit, Scheduler, boolean, int) - Method in class io.reactivex.rxjava3.core.Observable
-
Returns an Observable that drops items emitted by the source ObservableSource during a specified time window
(defined on a specified scheduler) before the source completes.
- skipUntil(Publisher<U>) - Method in class io.reactivex.rxjava3.core.Flowable
-
Returns a Flowable that skips items emitted by the source Publisher until a second Publisher emits
an item.
- skipUntil(ObservableSource<U>) - Method in class io.reactivex.rxjava3.core.Observable
-
Returns an Observable that skips items emitted by the source ObservableSource until a second ObservableSource emits
an item.
- skipWhile(Predicate<? super T>) - Method in class io.reactivex.rxjava3.core.Flowable
-
Returns a Flowable that skips all items emitted by the source Publisher as long as a specified
condition holds true, but emits all further source items as soon as the condition becomes false.
- skipWhile(Predicate<? super T>) - Method in class io.reactivex.rxjava3.core.Observable
-
Returns an Observable that skips all items emitted by the source ObservableSource as long as a specified
condition holds true, but emits all further source items as soon as the condition becomes false.
- sorted() - Method in class io.reactivex.rxjava3.core.Flowable
-
Returns a Flowable that emits the events emitted by source Publisher, in a
sorted order.
- sorted(Comparator<? super T>) - Method in class io.reactivex.rxjava3.core.Flowable
-
Returns a Flowable that emits the events emitted by source Publisher, in a
sorted order based on a specified comparison function.
- sorted() - Method in class io.reactivex.rxjava3.core.Observable
-
Returns an Observable that emits the events emitted by source ObservableSource, in a
sorted order.
- sorted(Comparator<? super T>) - Method in class io.reactivex.rxjava3.core.Observable
-
Returns an Observable that emits the events emitted by source ObservableSource, in a
sorted order based on a specified comparison function.
- sorted(Comparator<? super T>) - Method in class io.reactivex.rxjava3.parallel.ParallelFlowable
-
Sorts the 'rails' of this ParallelFlowable and returns a Publisher that sequentially
picks the smallest next value from the rails.
- sorted(Comparator<? super T>, int) - Method in class io.reactivex.rxjava3.parallel.ParallelFlowable
-
Sorts the 'rails' of this ParallelFlowable and returns a Publisher that sequentially
picks the smallest next value from the rails.
- start() - Method in class io.reactivex.rxjava3.core.Scheduler
-
Allows the Scheduler instance to start threads
and accept tasks on them.
- start() - Method in class io.reactivex.rxjava3.processors.MulticastProcessor
-
Initializes this Processor by setting an upstream Subscription that
ignores request amounts, uses a fixed buffer
and allows using the onXXX and offer methods
afterwards.
- start() - Static method in class io.reactivex.rxjava3.schedulers.Schedulers
-
Starts the standard Schedulers.
- startUnbounded() - Method in class io.reactivex.rxjava3.processors.MulticastProcessor
-
Initializes this Processor by setting an upstream Subscription that
ignores request amounts, uses an unbounded buffer
and allows using the onXXX and offer methods
afterwards.
- startWith(CompletableSource) - Method in class io.reactivex.rxjava3.core.Completable
-
Returns a Completable which first runs the other Completable
then this completable if the other completed normally.
- startWith(Observable<T>) - Method in class io.reactivex.rxjava3.core.Completable
-
Returns an Observable which first delivers the events
of the other Observable then runs this CompletableConsumable.
- startWith(Publisher<T>) - Method in class io.reactivex.rxjava3.core.Completable
-
Returns a Flowable which first delivers the events
of the other Publisher then runs this Completable.
- startWith(Publisher<? extends T>) - Method in class io.reactivex.rxjava3.core.Flowable
-
Returns a Flowable that emits the items in a specified
Publisher
before it begins to emit
items emitted by the source Publisher.
- startWith(ObservableSource<? extends T>) - Method in class io.reactivex.rxjava3.core.Observable
-
Returns an Observable that emits the items in a specified
ObservableSource
before it begins to emit
items emitted by the source ObservableSource.
- startWithArray(T...) - Method in class io.reactivex.rxjava3.core.Flowable
-
Returns a Flowable that emits the specified items before it begins to emit items emitted by the source
Publisher.
- startWithArray(T...) - Method in class io.reactivex.rxjava3.core.Observable
-
Returns an Observable that emits the specified items before it begins to emit items emitted by the source
ObservableSource.
- startWithItem(T) - Method in class io.reactivex.rxjava3.core.Flowable
-
Returns a Flowable that emits a specified item before it begins to emit items emitted by the source
Publisher.
- startWithItem(T) - Method in class io.reactivex.rxjava3.core.Observable
-
Returns an Observable that emits a specified item before it begins to emit items emitted by the source
ObservableSource.
- startWithIterable(Iterable<? extends T>) - Method in class io.reactivex.rxjava3.core.Flowable
-
Returns a Flowable that emits the items in a specified
Iterable
before it begins to emit items
emitted by the source Publisher.
- startWithIterable(Iterable<? extends T>) - Method in class io.reactivex.rxjava3.core.Observable
-
Returns an Observable that emits the items in a specified
Iterable
before it begins to emit items
emitted by the source ObservableSource.
- Subject<T> - Class in io.reactivex.rxjava3.subjects
-
Represents an
Observer
and an
Observable
at the same time, allowing
multicasting events from a single source to multiple child
Observer
s.
- Subject() - Constructor for class io.reactivex.rxjava3.subjects.Subject
-
- subscribe() - Method in class io.reactivex.rxjava3.core.Completable
-
Subscribes to this CompletableConsumable and returns a Disposable which can be used to dispose
the subscription.
- subscribe(CompletableObserver) - Method in class io.reactivex.rxjava3.core.Completable
-
- subscribe(Action, Consumer<? super Throwable>) - Method in class io.reactivex.rxjava3.core.Completable
-
Subscribes to this Completable and calls back either the onError or onComplete functions.
- subscribe(Action) - Method in class io.reactivex.rxjava3.core.Completable
-
Subscribes to this Completable and calls the given Action when this Completable
completes normally.
- subscribe(CompletableEmitter) - Method in interface io.reactivex.rxjava3.core.CompletableOnSubscribe
-
Called for each CompletableObserver that subscribes.
- subscribe(CompletableObserver) - Method in interface io.reactivex.rxjava3.core.CompletableSource
-
Subscribes the given CompletableObserver to this CompletableSource instance.
- subscribe() - Method in class io.reactivex.rxjava3.core.Flowable
-
Subscribes to a Publisher and ignores onNext
and onComplete
emissions.
- subscribe(Consumer<? super T>) - Method in class io.reactivex.rxjava3.core.Flowable
-
Subscribes to a Publisher and provides a callback to handle the items it emits.
- subscribe(Consumer<? super T>, Consumer<? super Throwable>) - Method in class io.reactivex.rxjava3.core.Flowable
-
Subscribes to a Publisher and provides callbacks to handle the items it emits and any error
notification it issues.
- subscribe(Consumer<? super T>, Consumer<? super Throwable>, Action) - Method in class io.reactivex.rxjava3.core.Flowable
-
Subscribes to a Publisher and provides callbacks to handle the items it emits and any error or
completion notification it issues.
- subscribe(Subscriber<? super T>) - Method in class io.reactivex.rxjava3.core.Flowable
-
- subscribe(FlowableSubscriber<? super T>) - Method in class io.reactivex.rxjava3.core.Flowable
-
Establish a connection between this Flowable and the given FlowableSubscriber and
start streaming events based on the demand of the FlowableSubscriber.
- subscribe(FlowableEmitter<T>) - Method in interface io.reactivex.rxjava3.core.FlowableOnSubscribe
-
Called for each Subscriber that subscribes.
- subscribe() - Method in class io.reactivex.rxjava3.core.Maybe
-
Subscribes to a Maybe and ignores onSuccess
and onComplete
emissions.
- subscribe(Consumer<? super T>) - Method in class io.reactivex.rxjava3.core.Maybe
-
Subscribes to a Maybe and provides a callback to handle the items it emits.
- subscribe(Consumer<? super T>, Consumer<? super Throwable>) - Method in class io.reactivex.rxjava3.core.Maybe
-
Subscribes to a Maybe and provides callbacks to handle the items it emits and any error
notification it issues.
- subscribe(Consumer<? super T>, Consumer<? super Throwable>, Action) - Method in class io.reactivex.rxjava3.core.Maybe
-
Subscribes to a Maybe and provides callbacks to handle the items it emits and any error or
completion notification it issues.
- subscribe(MaybeObserver<? super T>) - Method in class io.reactivex.rxjava3.core.Maybe
-
- subscribe(MaybeEmitter<T>) - Method in interface io.reactivex.rxjava3.core.MaybeOnSubscribe
-
Called for each MaybeObserver that subscribes.
- subscribe(MaybeObserver<? super T>) - Method in interface io.reactivex.rxjava3.core.MaybeSource
-
Subscribes the given MaybeObserver to this MaybeSource instance.
- subscribe() - Method in class io.reactivex.rxjava3.core.Observable
-
Subscribes to an ObservableSource and ignores onNext
and onComplete
emissions.
- subscribe(Consumer<? super T>) - Method in class io.reactivex.rxjava3.core.Observable
-
Subscribes to an ObservableSource and provides a callback to handle the items it emits.
- subscribe(Consumer<? super T>, Consumer<? super Throwable>) - Method in class io.reactivex.rxjava3.core.Observable
-
Subscribes to an ObservableSource and provides callbacks to handle the items it emits and any error
notification it issues.
- subscribe(Consumer<? super T>, Consumer<? super Throwable>, Action) - Method in class io.reactivex.rxjava3.core.Observable
-
Subscribes to an ObservableSource and provides callbacks to handle the items it emits and any error or
completion notification it issues.
- subscribe(Observer<? super T>) - Method in class io.reactivex.rxjava3.core.Observable
-
- subscribe(ObservableEmitter<T>) - Method in interface io.reactivex.rxjava3.core.ObservableOnSubscribe
-
Called for each Observer that subscribes.
- subscribe(Observer<? super T>) - Method in interface io.reactivex.rxjava3.core.ObservableSource
-
Subscribes the given Observer to this ObservableSource instance.
- subscribe() - Method in class io.reactivex.rxjava3.core.Single
-
Subscribes to a Single but ignore its emission or notification.
- subscribe(BiConsumer<? super T, ? super Throwable>) - Method in class io.reactivex.rxjava3.core.Single
-
Subscribes to a Single and provides a composite callback to handle the item it emits
or any error notification it issues.
- subscribe(Consumer<? super T>) - Method in class io.reactivex.rxjava3.core.Single
-
Subscribes to a Single and provides a callback to handle the item it emits.
- subscribe(Consumer<? super T>, Consumer<? super Throwable>) - Method in class io.reactivex.rxjava3.core.Single
-
Subscribes to a Single and provides callbacks to handle the item it emits or any error notification it
issues.
- subscribe(SingleObserver<? super T>) - Method in class io.reactivex.rxjava3.core.Single
-
- subscribe(SingleEmitter<T>) - Method in interface io.reactivex.rxjava3.core.SingleOnSubscribe
-
Called for each SingleObserver that subscribes.
- subscribe(SingleObserver<? super T>) - Method in interface io.reactivex.rxjava3.core.SingleSource
-
Subscribes the given SingleObserver to this SingleSource instance.
- subscribe(Subscriber<? super T>[]) - Method in class io.reactivex.rxjava3.parallel.ParallelFlowable
-
Subscribes an array of Subscribers to this ParallelFlowable and triggers
the execution chain for all 'rails'.
- subscribeActual(CompletableObserver) - Method in class io.reactivex.rxjava3.core.Completable
-
Implement this method to handle the incoming
CompletableObserver
s and
perform the business logic in your operator.
- subscribeActual(Subscriber<? super T>) - Method in class io.reactivex.rxjava3.core.Flowable
-
Operator implementations (both source and intermediate) should implement this method that
performs the necessary business logic and handles the incoming
Subscriber
s.
- subscribeActual(MaybeObserver<? super T>) - Method in class io.reactivex.rxjava3.core.Maybe
-
Implement this method in subclasses to handle the incoming
MaybeObserver
s.
- subscribeActual(Observer<? super T>) - Method in class io.reactivex.rxjava3.core.Observable
-
Operator implementations (both source and intermediate) should implement this method that
performs the necessary business logic and handles the incoming
Observer
s.
- subscribeActual(SingleObserver<? super T>) - Method in class io.reactivex.rxjava3.core.Single
-
Implement this method in subclasses to handle the incoming
SingleObserver
s.
- subscribeActual(Subscriber<? super T>) - Method in class io.reactivex.rxjava3.processors.AsyncProcessor
-
- subscribeActual(Subscriber<? super T>) - Method in class io.reactivex.rxjava3.processors.BehaviorProcessor
-
- subscribeActual(Subscriber<? super T>) - Method in class io.reactivex.rxjava3.processors.MulticastProcessor
-
- subscribeActual(Subscriber<? super T>) - Method in class io.reactivex.rxjava3.processors.PublishProcessor
-
- subscribeActual(Subscriber<? super T>) - Method in class io.reactivex.rxjava3.processors.ReplayProcessor
-
- subscribeActual(Subscriber<? super T>) - Method in class io.reactivex.rxjava3.processors.UnicastProcessor
-
- subscribeActual(Observer<? super T>) - Method in class io.reactivex.rxjava3.subjects.AsyncSubject
-
- subscribeActual(Observer<? super T>) - Method in class io.reactivex.rxjava3.subjects.BehaviorSubject
-
- subscribeActual(CompletableObserver) - Method in class io.reactivex.rxjava3.subjects.CompletableSubject
-
- subscribeActual(MaybeObserver<? super T>) - Method in class io.reactivex.rxjava3.subjects.MaybeSubject
-
- subscribeActual(Observer<? super T>) - Method in class io.reactivex.rxjava3.subjects.PublishSubject
-
- subscribeActual(Observer<? super T>) - Method in class io.reactivex.rxjava3.subjects.ReplaySubject
-
- subscribeActual(SingleObserver<? super T>) - Method in class io.reactivex.rxjava3.subjects.SingleSubject
-
- subscribeActual(Observer<? super T>) - Method in class io.reactivex.rxjava3.subjects.UnicastSubject
-
- subscribeOn(Scheduler) - Method in class io.reactivex.rxjava3.core.Completable
-
Returns a Completable which subscribes the child subscriber on the specified scheduler, making
sure the subscription side-effects happen on that specific thread of the scheduler.
- subscribeOn(Scheduler) - Method in class io.reactivex.rxjava3.core.Flowable
-
Asynchronously subscribes Subscribers to this Publisher on the specified
Scheduler
.
- subscribeOn(Scheduler, boolean) - Method in class io.reactivex.rxjava3.core.Flowable
-
Asynchronously subscribes Subscribers to this Publisher on the specified
Scheduler
optionally reroutes requests from other threads to the same
Scheduler
thread.
- subscribeOn(Scheduler) - Method in class io.reactivex.rxjava3.core.Maybe
-
Asynchronously subscribes subscribers to this Maybe on the specified
Scheduler
.
- subscribeOn(Scheduler) - Method in class io.reactivex.rxjava3.core.Observable
-
Asynchronously subscribes Observers to this ObservableSource on the specified
Scheduler
.
- subscribeOn(Scheduler) - Method in class io.reactivex.rxjava3.core.Single
-
Asynchronously subscribes subscribers to this Single on the specified
Scheduler
.
- subscribeWith(E) - Method in class io.reactivex.rxjava3.core.Completable
-
Subscribes a given CompletableObserver (subclass) to this Completable and returns the given
CompletableObserver as is.
- subscribeWith(E) - Method in class io.reactivex.rxjava3.core.Flowable
-
Subscribes a given Subscriber (subclass) to this Flowable and returns the given
Subscriber as is.
- subscribeWith(E) - Method in class io.reactivex.rxjava3.core.Maybe
-
Subscribes a given MaybeObserver (subclass) to this Maybe and returns the given
MaybeObserver as is.
- subscribeWith(E) - Method in class io.reactivex.rxjava3.core.Observable
-
Subscribes a given Observer (subclass) to this Observable and returns the given
Observer as is.
- subscribeWith(E) - Method in class io.reactivex.rxjava3.core.Single
-
Subscribes a given SingleObserver (subclass) to this Single and returns the given
SingleObserver as is.
- Supplier<T> - Interface in io.reactivex.rxjava3.functions
-
A functional interface (callback) that provides a single value or
throws an exception.
- switchIfEmpty(Publisher<? extends T>) - Method in class io.reactivex.rxjava3.core.Flowable
-
Returns a Flowable that emits the items emitted by the source Publisher or the items of an alternate
Publisher if the source Publisher is empty.
- switchIfEmpty(MaybeSource<? extends T>) - Method in class io.reactivex.rxjava3.core.Maybe
-
Returns a Maybe that emits the items emitted by the source Maybe or the items of an alternate
MaybeSource if the current Maybe is empty.
- switchIfEmpty(SingleSource<? extends T>) - Method in class io.reactivex.rxjava3.core.Maybe
-
Returns a Single that emits the items emitted by the source Maybe or the item of an alternate
SingleSource if the current Maybe is empty.
- switchIfEmpty(ObservableSource<? extends T>) - Method in class io.reactivex.rxjava3.core.Observable
-
Returns an Observable that emits the items emitted by the source ObservableSource or the items of an alternate
ObservableSource if the source ObservableSource is empty.
- switchMap(Function<? super T, ? extends Publisher<? extends R>>) - Method in class io.reactivex.rxjava3.core.Flowable
-
Returns a new Publisher by applying a function that you supply to each item emitted by the source
Publisher that returns a Publisher, and then emitting the items emitted by the most recently emitted
of these Publishers.
- switchMap(Function<? super T, ? extends Publisher<? extends R>>, int) - Method in class io.reactivex.rxjava3.core.Flowable
-
Returns a new Publisher by applying a function that you supply to each item emitted by the source
Publisher that returns a Publisher, and then emitting the items emitted by the most recently emitted
of these Publishers.
- switchMap(Function<? super T, ? extends ObservableSource<? extends R>>) - Method in class io.reactivex.rxjava3.core.Observable
-
Returns a new ObservableSource by applying a function that you supply to each item emitted by the source
ObservableSource that returns an ObservableSource, and then emitting the items emitted by the most recently emitted
of these ObservableSources.
- switchMap(Function<? super T, ? extends ObservableSource<? extends R>>, int) - Method in class io.reactivex.rxjava3.core.Observable
-
Returns a new ObservableSource by applying a function that you supply to each item emitted by the source
ObservableSource that returns an ObservableSource, and then emitting the items emitted by the most recently emitted
of these ObservableSources.
- switchMapCompletable(Function<? super T, ? extends CompletableSource>) - Method in class io.reactivex.rxjava3.core.Flowable
-
Maps the upstream values into
CompletableSource
s, subscribes to the newer one while
disposing the subscription to the previous
CompletableSource
, thus keeping at most one
active
CompletableSource
running.
- switchMapCompletable(Function<? super T, ? extends CompletableSource>) - Method in class io.reactivex.rxjava3.core.Observable
-
Maps the upstream values into
CompletableSource
s, subscribes to the newer one while
disposing the subscription to the previous
CompletableSource
, thus keeping at most one
active
CompletableSource
running.
- switchMapCompletableDelayError(Function<? super T, ? extends CompletableSource>) - Method in class io.reactivex.rxjava3.core.Flowable
-
Maps the upstream values into
CompletableSource
s, subscribes to the newer one while
disposing the subscription to the previous
CompletableSource
, thus keeping at most one
active
CompletableSource
running and delaying any main or inner errors until all
of them terminate.
- switchMapCompletableDelayError(Function<? super T, ? extends CompletableSource>) - Method in class io.reactivex.rxjava3.core.Observable
-
Maps the upstream values into
CompletableSource
s, subscribes to the newer one while
disposing the subscription to the previous
CompletableSource
, thus keeping at most one
active
CompletableSource
running and delaying any main or inner errors until all
of them terminate.
- switchMapDelayError(Function<? super T, ? extends Publisher<? extends R>>) - Method in class io.reactivex.rxjava3.core.Flowable
-
Returns a new Publisher by applying a function that you supply to each item emitted by the source
Publisher that returns a Publisher, and then emitting the items emitted by the most recently emitted
of these Publishers and delays any error until all Publishers terminate.
- switchMapDelayError(Function<? super T, ? extends Publisher<? extends R>>, int) - Method in class io.reactivex.rxjava3.core.Flowable
-
Returns a new Publisher by applying a function that you supply to each item emitted by the source
Publisher that returns a Publisher, and then emitting the items emitted by the most recently emitted
of these Publishers and delays any error until all Publishers terminate.
- switchMapDelayError(Function<? super T, ? extends ObservableSource<? extends R>>) - Method in class io.reactivex.rxjava3.core.Observable
-
Returns a new ObservableSource by applying a function that you supply to each item emitted by the source
ObservableSource that returns an ObservableSource, and then emitting the items emitted by the most recently emitted
of these ObservableSources and delays any error until all ObservableSources terminate.
- switchMapDelayError(Function<? super T, ? extends ObservableSource<? extends R>>, int) - Method in class io.reactivex.rxjava3.core.Observable
-
Returns a new ObservableSource by applying a function that you supply to each item emitted by the source
ObservableSource that returns an ObservableSource, and then emitting the items emitted by the most recently emitted
of these ObservableSources and delays any error until all ObservableSources terminate.
- switchMapMaybe(Function<? super T, ? extends MaybeSource<? extends R>>) - Method in class io.reactivex.rxjava3.core.Flowable
-
Maps the upstream items into
MaybeSource
s and switches (subscribes) to the newer ones
while disposing the older ones (and ignoring their signals) and emits the latest success value of the current one if
available while failing immediately if this
Flowable
or any of the
active inner
MaybeSource
s fail.
- switchMapMaybe(Function<? super T, ? extends MaybeSource<? extends R>>) - Method in class io.reactivex.rxjava3.core.Observable
-
Maps the upstream items into
MaybeSource
s and switches (subscribes) to the newer ones
while disposing the older ones (and ignoring their signals) and emits the latest success value of the current one if
available while failing immediately if this
Observable
or any of the
active inner
MaybeSource
s fail.
- switchMapMaybeDelayError(Function<? super T, ? extends MaybeSource<? extends R>>) - Method in class io.reactivex.rxjava3.core.Flowable
-
Maps the upstream items into
MaybeSource
s and switches (subscribes) to the newer ones
while disposing the older ones (and ignoring their signals) and emits the latest success value of the current one if
available, delaying errors from this
Flowable
or the inner
MaybeSource
s until all terminate.
- switchMapMaybeDelayError(Function<? super T, ? extends MaybeSource<? extends R>>) - Method in class io.reactivex.rxjava3.core.Observable
-
Maps the upstream items into
MaybeSource
s and switches (subscribes) to the newer ones
while disposing the older ones (and ignoring their signals) and emits the latest success value of the current one if
available, delaying errors from this
Observable
or the inner
MaybeSource
s until all terminate.
- switchMapSingle(Function<? super T, ? extends SingleSource<? extends R>>) - Method in class io.reactivex.rxjava3.core.Flowable
-
Maps the upstream items into
SingleSource
s and switches (subscribes) to the newer ones
while disposing the older ones (and ignoring their signals) and emits the latest success value of the current one
while failing immediately if this
Flowable
or any of the
active inner
SingleSource
s fail.
- switchMapSingle(Function<? super T, ? extends SingleSource<? extends R>>) - Method in class io.reactivex.rxjava3.core.Observable
-
Returns a new ObservableSource by applying a function that you supply to each item emitted by the source
ObservableSource that returns a SingleSource, and then emitting the item emitted by the most recently emitted
of these SingleSources.
- switchMapSingleDelayError(Function<? super T, ? extends SingleSource<? extends R>>) - Method in class io.reactivex.rxjava3.core.Flowable
-
Maps the upstream items into
SingleSource
s and switches (subscribes) to the newer ones
while disposing the older ones (and ignoring their signals) and emits the latest success value of the current one,
delaying errors from this
Flowable
or the inner
SingleSource
s until all terminate.
- switchMapSingleDelayError(Function<? super T, ? extends SingleSource<? extends R>>) - Method in class io.reactivex.rxjava3.core.Observable
-
Returns a new ObservableSource by applying a function that you supply to each item emitted by the source
ObservableSource that returns a SingleSource, and then emitting the item emitted by the most recently emitted
of these SingleSources and delays any error until all SingleSources terminate.
- switchOnNext(Publisher<? extends Publisher<? extends T>>, int) - Static method in class io.reactivex.rxjava3.core.Flowable
-
Converts a Publisher that emits Publishers into a Publisher that emits the items emitted by the
most recently emitted of those Publishers.
- switchOnNext(Publisher<? extends Publisher<? extends T>>) - Static method in class io.reactivex.rxjava3.core.Flowable
-
Converts a Publisher that emits Publishers into a Publisher that emits the items emitted by the
most recently emitted of those Publishers.
- switchOnNext(ObservableSource<? extends ObservableSource<? extends T>>, int) - Static method in class io.reactivex.rxjava3.core.Observable
-
Converts an ObservableSource that emits ObservableSources into an ObservableSource that emits the items emitted by the
most recently emitted of those ObservableSources.
- switchOnNext(ObservableSource<? extends ObservableSource<? extends T>>) - Static method in class io.reactivex.rxjava3.core.Observable
-
Converts an ObservableSource that emits ObservableSources into an ObservableSource that emits the items emitted by the
most recently emitted of those ObservableSources.
- switchOnNextDelayError(Publisher<? extends Publisher<? extends T>>) - Static method in class io.reactivex.rxjava3.core.Flowable
-
Converts a Publisher that emits Publishers into a Publisher that emits the items emitted by the
most recently emitted of those Publishers and delays any exception until all Publishers terminate.
- switchOnNextDelayError(Publisher<? extends Publisher<? extends T>>, int) - Static method in class io.reactivex.rxjava3.core.Flowable
-
Converts a Publisher that emits Publishers into a Publisher that emits the items emitted by the
most recently emitted of those Publishers and delays any exception until all Publishers terminate.
- switchOnNextDelayError(ObservableSource<? extends ObservableSource<? extends T>>) - Static method in class io.reactivex.rxjava3.core.Observable
-
Converts an ObservableSource that emits ObservableSources into an ObservableSource that emits the items emitted by the
most recently emitted of those ObservableSources and delays any exception until all ObservableSources terminate.
- switchOnNextDelayError(ObservableSource<? extends ObservableSource<? extends T>>, int) - Static method in class io.reactivex.rxjava3.core.Observable
-
Converts an ObservableSource that emits ObservableSources into an ObservableSource that emits the items emitted by the
most recently emitted of those ObservableSources and delays any exception until all ObservableSources terminate.
- tag - Variable in class io.reactivex.rxjava3.observers.BaseTestConsumer
-
The optional tag associated with this test consumer.
- take(long) - Method in class io.reactivex.rxjava3.core.Flowable
-
Returns a Flowable that emits only the first count
items emitted by the source Publisher.
- take(long, TimeUnit) - Method in class io.reactivex.rxjava3.core.Flowable
-
Returns a Flowable that emits those items emitted by source Publisher before a specified time runs
out.
- take(long, TimeUnit, Scheduler) - Method in class io.reactivex.rxjava3.core.Flowable
-
Returns a Flowable that emits those items emitted by source Publisher before a specified time (on a
specified Scheduler) runs out.
- take(long) - Method in class io.reactivex.rxjava3.core.Observable
-
Returns an Observable that emits only the first count
items emitted by the source ObservableSource.
- take(long, TimeUnit) - Method in class io.reactivex.rxjava3.core.Observable
-
Returns an Observable that emits those items emitted by source ObservableSource before a specified time runs
out.
- take(long, TimeUnit, Scheduler) - Method in class io.reactivex.rxjava3.core.Observable
-
Returns an Observable that emits those items emitted by source ObservableSource before a specified time (on a
specified Scheduler) runs out.
- takeLast(int) - Method in class io.reactivex.rxjava3.core.Flowable
-
Returns a Flowable that emits at most the last count
items emitted by the source Publisher.
- takeLast(long, long, TimeUnit) - Method in class io.reactivex.rxjava3.core.Flowable
-
Returns a Flowable that emits at most a specified number of items from the source Publisher that were
emitted in a specified window of time before the Publisher completed.
- takeLast(long, long, TimeUnit, Scheduler) - Method in class io.reactivex.rxjava3.core.Flowable
-
Returns a Flowable that emits at most a specified number of items from the source Publisher that were
emitted in a specified window of time before the Publisher completed, where the timing information is
provided by a given Scheduler.
- takeLast(long, long, TimeUnit, Scheduler, boolean, int) - Method in class io.reactivex.rxjava3.core.Flowable
-
Returns a Flowable that emits at most a specified number of items from the source Publisher that were
emitted in a specified window of time before the Publisher completed, where the timing information is
provided by a given Scheduler.
- takeLast(long, TimeUnit) - Method in class io.reactivex.rxjava3.core.Flowable
-
Returns a Flowable that emits the items from the source Publisher that were emitted in a specified
window of time before the Publisher completed.
- takeLast(long, TimeUnit, boolean) - Method in class io.reactivex.rxjava3.core.Flowable
-
Returns a Flowable that emits the items from the source Publisher that were emitted in a specified
window of time before the Publisher completed.
- takeLast(long, TimeUnit, Scheduler) - Method in class io.reactivex.rxjava3.core.Flowable
-
Returns a Flowable that emits the items from the source Publisher that were emitted in a specified
window of time before the Publisher completed, where the timing information is provided by a specified
Scheduler.
- takeLast(long, TimeUnit, Scheduler, boolean) - Method in class io.reactivex.rxjava3.core.Flowable
-
Returns a Flowable that emits the items from the source Publisher that were emitted in a specified
window of time before the Publisher completed, where the timing information is provided by a specified
Scheduler.
- takeLast(long, TimeUnit, Scheduler, boolean, int) - Method in class io.reactivex.rxjava3.core.Flowable
-
Returns a Flowable that emits the items from the source Publisher that were emitted in a specified
window of time before the Publisher completed, where the timing information is provided by a specified
Scheduler.
- takeLast(int) - Method in class io.reactivex.rxjava3.core.Observable
-
Returns an Observable that emits at most the last count
items emitted by the source ObservableSource.
- takeLast(long, long, TimeUnit) - Method in class io.reactivex.rxjava3.core.Observable
-
Returns an Observable that emits at most a specified number of items from the source ObservableSource that were
emitted in a specified window of time before the ObservableSource completed.
- takeLast(long, long, TimeUnit, Scheduler) - Method in class io.reactivex.rxjava3.core.Observable
-
Returns an Observable that emits at most a specified number of items from the source ObservableSource that were
emitted in a specified window of time before the ObservableSource completed, where the timing information is
provided by a given Scheduler.
- takeLast(long, long, TimeUnit, Scheduler, boolean, int) - Method in class io.reactivex.rxjava3.core.Observable
-
Returns an Observable that emits at most a specified number of items from the source ObservableSource that were
emitted in a specified window of time before the ObservableSource completed, where the timing information is
provided by a given Scheduler.
- takeLast(long, TimeUnit) - Method in class io.reactivex.rxjava3.core.Observable
-
Returns an Observable that emits the items from the source ObservableSource that were emitted in a specified
window of time before the ObservableSource completed.
- takeLast(long, TimeUnit, boolean) - Method in class io.reactivex.rxjava3.core.Observable
-
Returns an Observable that emits the items from the source ObservableSource that were emitted in a specified
window of time before the ObservableSource completed.
- takeLast(long, TimeUnit, Scheduler) - Method in class io.reactivex.rxjava3.core.Observable
-
Returns an Observable that emits the items from the source ObservableSource that were emitted in a specified
window of time before the ObservableSource completed, where the timing information is provided by a specified
Scheduler.
- takeLast(long, TimeUnit, Scheduler, boolean) - Method in class io.reactivex.rxjava3.core.Observable
-
Returns an Observable that emits the items from the source ObservableSource that were emitted in a specified
window of time before the ObservableSource completed, where the timing information is provided by a specified
Scheduler.
- takeLast(long, TimeUnit, Scheduler, boolean, int) - Method in class io.reactivex.rxjava3.core.Observable
-
Returns an Observable that emits the items from the source ObservableSource that were emitted in a specified
window of time before the ObservableSource completed, where the timing information is provided by a specified
Scheduler.
- takeUntil(CompletableSource) - Method in class io.reactivex.rxjava3.core.Completable
-
Terminates the downstream if this or the other Completable
terminates (wins the termination race) while disposing the connection to the losing source.
- takeUntil(Predicate<? super T>) - Method in class io.reactivex.rxjava3.core.Flowable
-
Returns a Flowable that emits items emitted by the source Publisher, checks the specified predicate
for each item, and then completes when the condition is satisfied.
- takeUntil(Publisher<U>) - Method in class io.reactivex.rxjava3.core.Flowable
-
Returns a Flowable that emits the items emitted by the source Publisher until a second Publisher
emits an item.
- takeUntil(MaybeSource<U>) - Method in class io.reactivex.rxjava3.core.Maybe
-
Returns a Maybe that emits the items emitted by the source Maybe until a second MaybeSource
emits an item.
- takeUntil(Publisher<U>) - Method in class io.reactivex.rxjava3.core.Maybe
-
Returns a Maybe that emits the item emitted by the source Maybe until a second Publisher
emits an item.
- takeUntil(ObservableSource<U>) - Method in class io.reactivex.rxjava3.core.Observable
-
Returns an Observable that emits the items emitted by the source Observable until a second ObservableSource
emits an item.
- takeUntil(Predicate<? super T>) - Method in class io.reactivex.rxjava3.core.Observable
-
Returns an Observable that emits items emitted by the source Observable, checks the specified predicate
for each item, and then completes when the condition is satisfied.
- takeUntil(CompletableSource) - Method in class io.reactivex.rxjava3.core.Single
-
Returns a Single that emits the item emitted by the source Single until a Completable terminates.
- takeUntil(Publisher<E>) - Method in class io.reactivex.rxjava3.core.Single
-
Returns a Single that emits the item emitted by the source Single until a Publisher emits an item.
- takeUntil(SingleSource<? extends E>) - Method in class io.reactivex.rxjava3.core.Single
-
Returns a Single that emits the item emitted by the source Single until a second Single emits an item.
- takeWhile(Predicate<? super T>) - Method in class io.reactivex.rxjava3.core.Flowable
-
Returns a Flowable that emits items emitted by the source Publisher so long as each item satisfied a
specified condition, and then completes as soon as this condition is not satisfied.
- takeWhile(Predicate<? super T>) - Method in class io.reactivex.rxjava3.core.Observable
-
Returns an Observable that emits items emitted by the source ObservableSource so long as each item satisfied a
specified condition, and then completes as soon as this condition is not satisfied.
- test() - Method in class io.reactivex.rxjava3.core.Completable
-
Creates a TestObserver and subscribes
it to this Completable.
- test(boolean) - Method in class io.reactivex.rxjava3.core.Completable
-
Creates a TestObserver optionally in cancelled state, then subscribes it to this Completable.
- test() - Method in class io.reactivex.rxjava3.core.Flowable
-
Creates a TestSubscriber that requests Long.MAX_VALUE and subscribes
it to this Flowable.
- test(long) - Method in class io.reactivex.rxjava3.core.Flowable
-
Creates a TestSubscriber with the given initial request amount and subscribes
it to this Flowable.
- test(long, boolean) - Method in class io.reactivex.rxjava3.core.Flowable
-
Creates a TestSubscriber with the given initial request amount,
optionally cancels it before the subscription and subscribes
it to this Flowable.
- test() - Method in class io.reactivex.rxjava3.core.Maybe
-
Creates a TestObserver and subscribes
it to this Maybe.
- test(boolean) - Method in class io.reactivex.rxjava3.core.Maybe
-
Creates a TestObserver optionally in cancelled state, then subscribes it to this Maybe.
- test() - Method in class io.reactivex.rxjava3.core.Observable
-
Creates a TestObserver and subscribes
it to this Observable.
- test(boolean) - Method in class io.reactivex.rxjava3.core.Observable
-
Creates a TestObserver, optionally disposes it and then subscribes
it to this Observable.
- test() - Method in class io.reactivex.rxjava3.core.Single
-
Creates a TestObserver and subscribes
it to this Single.
- test(boolean) - Method in class io.reactivex.rxjava3.core.Single
-
Creates a TestObserver optionally in cancelled state, then subscribes it to this Single.
- test(T1, T2) - Method in interface io.reactivex.rxjava3.functions.BiPredicate
-
Test the given input values and return a boolean.
- test(T) - Method in interface io.reactivex.rxjava3.functions.Predicate
-
Test the given input value and return a boolean.
- TestObserver<T> - Class in io.reactivex.rxjava3.observers
-
An Observer that records events and allows making assertions about them.
- TestObserver() - Constructor for class io.reactivex.rxjava3.observers.TestObserver
-
Constructs a non-forwarding TestObserver.
- TestObserver(Observer<? super T>) - Constructor for class io.reactivex.rxjava3.observers.TestObserver
-
Constructs a forwarding TestObserver.
- TestScheduler - Class in io.reactivex.rxjava3.schedulers
-
A special, non thread-safe scheduler for testing operators that require
a scheduler without introducing real concurrency and allows manually advancing
a virtual time.
- TestScheduler() - Constructor for class io.reactivex.rxjava3.schedulers.TestScheduler
-
Creates a new TestScheduler with initial virtual time of zero.
- TestScheduler(long, TimeUnit) - Constructor for class io.reactivex.rxjava3.schedulers.TestScheduler
-
Creates a new TestScheduler with the specified initial virtual time.
- TestSubscriber<T> - Class in io.reactivex.rxjava3.subscribers
-
A subscriber that records events and allows making assertions about them.
- TestSubscriber() - Constructor for class io.reactivex.rxjava3.subscribers.TestSubscriber
-
Constructs a non-forwarding TestSubscriber with an initial request value of Long.MAX_VALUE.
- TestSubscriber(long) - Constructor for class io.reactivex.rxjava3.subscribers.TestSubscriber
-
Constructs a non-forwarding TestSubscriber with the specified initial request value.
- TestSubscriber(Subscriber<? super T>) - Constructor for class io.reactivex.rxjava3.subscribers.TestSubscriber
-
Constructs a forwarding TestSubscriber but leaves the requesting to the wrapped subscriber.
- TestSubscriber(Subscriber<? super T>, long) - Constructor for class io.reactivex.rxjava3.subscribers.TestSubscriber
-
Constructs a forwarding TestSubscriber with the specified initial request value.
- throttleFirst(long, TimeUnit) - Method in class io.reactivex.rxjava3.core.Flowable
-
Returns a Flowable that emits only the first item emitted by the source Publisher during sequential
time windows of a specified duration.
- throttleFirst(long, TimeUnit, Scheduler) - Method in class io.reactivex.rxjava3.core.Flowable
-
Returns a Flowable that emits only the first item emitted by the source Publisher during sequential
time windows of a specified duration, where the windows are managed by a specified Scheduler.
- throttleFirst(long, TimeUnit) - Method in class io.reactivex.rxjava3.core.Observable
-
Returns an Observable that emits only the first item emitted by the source ObservableSource during sequential
time windows of a specified duration.
- throttleFirst(long, TimeUnit, Scheduler) - Method in class io.reactivex.rxjava3.core.Observable
-
Returns an Observable that emits only the first item emitted by the source ObservableSource during sequential
time windows of a specified duration, where the windows are managed by a specified Scheduler.
- throttleLast(long, TimeUnit) - Method in class io.reactivex.rxjava3.core.Flowable
-
Returns a Flowable that emits only the last item emitted by the source Publisher during sequential
time windows of a specified duration.
- throttleLast(long, TimeUnit, Scheduler) - Method in class io.reactivex.rxjava3.core.Flowable
-
Returns a Flowable that emits only the last item emitted by the source Publisher during sequential
time windows of a specified duration, where the duration is governed by a specified Scheduler.
- throttleLast(long, TimeUnit) - Method in class io.reactivex.rxjava3.core.Observable
-
Returns an Observable that emits only the last item emitted by the source ObservableSource during sequential
time windows of a specified duration.
- throttleLast(long, TimeUnit, Scheduler) - Method in class io.reactivex.rxjava3.core.Observable
-
Returns an Observable that emits only the last item emitted by the source ObservableSource during sequential
time windows of a specified duration, where the duration is governed by a specified Scheduler.
- throttleLatest(long, TimeUnit) - Method in class io.reactivex.rxjava3.core.Flowable
-
Throttles items from the upstream Flowable
by first emitting the next
item from upstream, then periodically emitting the latest item (if any) when
the specified timeout elapses between them.
- throttleLatest(long, TimeUnit, boolean) - Method in class io.reactivex.rxjava3.core.Flowable
-
Throttles items from the upstream Flowable
by first emitting the next
item from upstream, then periodically emitting the latest item (if any) when
the specified timeout elapses between them.
- throttleLatest(long, TimeUnit, Scheduler) - Method in class io.reactivex.rxjava3.core.Flowable
-
Throttles items from the upstream Flowable
by first emitting the next
item from upstream, then periodically emitting the latest item (if any) when
the specified timeout elapses between them.
- throttleLatest(long, TimeUnit, Scheduler, boolean) - Method in class io.reactivex.rxjava3.core.Flowable
-
Throttles items from the upstream Flowable
by first emitting the next
item from upstream, then periodically emitting the latest item (if any) when
the specified timeout elapses between them.
- throttleLatest(long, TimeUnit) - Method in class io.reactivex.rxjava3.core.Observable
-
Throttles items from the upstream Observable
by first emitting the next
item from upstream, then periodically emitting the latest item (if any) when
the specified timeout elapses between them.
- throttleLatest(long, TimeUnit, boolean) - Method in class io.reactivex.rxjava3.core.Observable
-
Throttles items from the upstream Observable
by first emitting the next
item from upstream, then periodically emitting the latest item (if any) when
the specified timeout elapses between them.
- throttleLatest(long, TimeUnit, Scheduler) - Method in class io.reactivex.rxjava3.core.Observable
-
Throttles items from the upstream Observable
by first emitting the next
item from upstream, then periodically emitting the latest item (if any) when
the specified timeout elapses between them.
- throttleLatest(long, TimeUnit, Scheduler, boolean) - Method in class io.reactivex.rxjava3.core.Observable
-
Throttles items from the upstream Observable
by first emitting the next
item from upstream, then periodically emitting the latest item (if any) when
the specified timeout elapses between them.
- throttleWithTimeout(long, TimeUnit) - Method in class io.reactivex.rxjava3.core.Flowable
-
Returns a Flowable that mirrors the source Publisher, except that it drops items emitted by the
source Publisher that are followed by newer items before a timeout value expires.
- throttleWithTimeout(long, TimeUnit, Scheduler) - Method in class io.reactivex.rxjava3.core.Flowable
-
Returns a Flowable that mirrors the source Publisher, except that it drops items emitted by the
source Publisher that are followed by newer items before a timeout value expires on a specified
Scheduler.
- throttleWithTimeout(long, TimeUnit) - Method in class io.reactivex.rxjava3.core.Observable
-
Returns an Observable that mirrors the source ObservableSource, except that it drops items emitted by the
source ObservableSource that are followed by newer items before a timeout value expires.
- throttleWithTimeout(long, TimeUnit, Scheduler) - Method in class io.reactivex.rxjava3.core.Observable
-
Returns an Observable that mirrors the source ObservableSource, except that it drops items emitted by the
source ObservableSource that are followed by newer items before a timeout value expires on a specified
Scheduler.
- throwIfFatal(Throwable) - Static method in class io.reactivex.rxjava3.exceptions.Exceptions
-
Throws a particular Throwable
only if it belongs to a set of "fatal" error varieties.
- time() - Method in class io.reactivex.rxjava3.schedulers.Timed
-
Returns the time value.
- time(TimeUnit) - Method in class io.reactivex.rxjava3.schedulers.Timed
-
Returns the contained time value in the time unit specified.
- Timed<T> - Class in io.reactivex.rxjava3.schedulers
-
Holds onto a value along with time information.
- Timed(T, long, TimeUnit) - Constructor for class io.reactivex.rxjava3.schedulers.Timed
-
Constructs a Timed instance with the given value and time information.
- timeInterval() - Method in class io.reactivex.rxjava3.core.Flowable
-
Returns a Flowable that emits records of the time interval between consecutive items emitted by the
source Publisher.
- timeInterval(Scheduler) - Method in class io.reactivex.rxjava3.core.Flowable
-
Returns a Flowable that emits records of the time interval between consecutive items emitted by the
source Publisher, where this interval is computed on a specified Scheduler.
- timeInterval(TimeUnit) - Method in class io.reactivex.rxjava3.core.Flowable
-
Returns a Flowable that emits records of the time interval between consecutive items emitted by the
source Publisher.
- timeInterval(TimeUnit, Scheduler) - Method in class io.reactivex.rxjava3.core.Flowable
-
Returns a Flowable that emits records of the time interval between consecutive items emitted by the
source Publisher, where this interval is computed on a specified Scheduler.
- timeInterval() - Method in class io.reactivex.rxjava3.core.Observable
-
Returns an Observable that emits records of the time interval between consecutive items emitted by the
source ObservableSource.
- timeInterval(Scheduler) - Method in class io.reactivex.rxjava3.core.Observable
-
Returns an Observable that emits records of the time interval between consecutive items emitted by the
source ObservableSource, where this interval is computed on a specified Scheduler.
- timeInterval(TimeUnit) - Method in class io.reactivex.rxjava3.core.Observable
-
Returns an Observable that emits records of the time interval between consecutive items emitted by the
source ObservableSource.
- timeInterval(TimeUnit, Scheduler) - Method in class io.reactivex.rxjava3.core.Observable
-
Returns an Observable that emits records of the time interval between consecutive items emitted by the
source ObservableSource, where this interval is computed on a specified Scheduler.
- timeout(long, TimeUnit) - Method in class io.reactivex.rxjava3.core.Completable
-
Returns a Completable that runs this Completable and emits a TimeoutException in case
this Completable doesn't complete within the given time.
- timeout(long, TimeUnit, CompletableSource) - Method in class io.reactivex.rxjava3.core.Completable
-
Returns a Completable that runs this Completable and switches to the other Completable
in case this Completable doesn't complete within the given time.
- timeout(long, TimeUnit, Scheduler) - Method in class io.reactivex.rxjava3.core.Completable
-
Returns a Completable that runs this Completable and emits a TimeoutException in case
this Completable doesn't complete within the given time while "waiting" on the specified
Scheduler.
- timeout(long, TimeUnit, Scheduler, CompletableSource) - Method in class io.reactivex.rxjava3.core.Completable
-
Returns a Completable that runs this Completable and switches to the other Completable
in case this Completable doesn't complete within the given time while "waiting" on
the specified scheduler.
- timeout(Function<? super T, ? extends Publisher<V>>) - Method in class io.reactivex.rxjava3.core.Flowable
-
Returns a Flowable that mirrors the source Publisher, but notifies Subscribers of a
TimeoutException
if an item emitted by the source Publisher doesn't arrive within a window of
time after the emission of the previous item, where that period of time is measured by a Publisher that
is a function of the previous item.
- timeout(Function<? super T, ? extends Publisher<V>>, Flowable<? extends T>) - Method in class io.reactivex.rxjava3.core.Flowable
-
Returns a Flowable that mirrors the source Publisher, but that switches to a fallback Publisher if
an item emitted by the source Publisher doesn't arrive within a window of time after the emission of the
previous item, where that period of time is measured by a Publisher that is a function of the previous
item.
- timeout(long, TimeUnit) - Method in class io.reactivex.rxjava3.core.Flowable
-
Returns a Flowable that mirrors the source Publisher but applies a timeout policy for each emitted
item.
- timeout(long, TimeUnit, Publisher<? extends T>) - Method in class io.reactivex.rxjava3.core.Flowable
-
Returns a Flowable that mirrors the source Publisher but applies a timeout policy for each emitted
item.
- timeout(long, TimeUnit, Scheduler, Publisher<? extends T>) - Method in class io.reactivex.rxjava3.core.Flowable
-
Returns a Flowable that mirrors the source Publisher but applies a timeout policy for each emitted
item using a specified Scheduler.
- timeout(long, TimeUnit, Scheduler) - Method in class io.reactivex.rxjava3.core.Flowable
-
Returns a Flowable that mirrors the source Publisher but applies a timeout policy for each emitted
item, where this policy is governed by a specified Scheduler.
- timeout(Publisher<U>, Function<? super T, ? extends Publisher<V>>) - Method in class io.reactivex.rxjava3.core.Flowable
-
Returns a Flowable that mirrors the source Publisher, but notifies Subscribers of a
TimeoutException
if either the first item emitted by the source Publisher or any subsequent item
doesn't arrive within time windows defined by other Publishers.
- timeout(Publisher<U>, Function<? super T, ? extends Publisher<V>>, Publisher<? extends T>) - Method in class io.reactivex.rxjava3.core.Flowable
-
Returns a Flowable that mirrors the source Publisher, but switches to a fallback Publisher if either
the first item emitted by the source Publisher or any subsequent item doesn't arrive within time windows
defined by other Publishers.
- timeout(long, TimeUnit) - Method in class io.reactivex.rxjava3.core.Maybe
-
Returns a Maybe that mirrors the source Maybe but applies a timeout policy for each emitted
item.
- timeout(long, TimeUnit, MaybeSource<? extends T>) - Method in class io.reactivex.rxjava3.core.Maybe
-
Returns a Maybe that mirrors the source Maybe but applies a timeout policy for each emitted
item.
- timeout(long, TimeUnit, Scheduler, MaybeSource<? extends T>) - Method in class io.reactivex.rxjava3.core.Maybe
-
Returns a Maybe that mirrors the source Maybe but applies a timeout policy for each emitted
item using a specified Scheduler.
- timeout(long, TimeUnit, Scheduler) - Method in class io.reactivex.rxjava3.core.Maybe
-
Returns a Maybe that mirrors the source Maybe but applies a timeout policy for each emitted
item, where this policy is governed on a specified Scheduler.
- timeout(MaybeSource<U>) - Method in class io.reactivex.rxjava3.core.Maybe
-
- timeout(MaybeSource<U>, MaybeSource<? extends T>) - Method in class io.reactivex.rxjava3.core.Maybe
-
If the current
Maybe
didn't signal an event before the
timeoutIndicator
MaybeSource
signals,
the current
Maybe
is disposed and the
fallback
MaybeSource
subscribed to
as a continuation.
- timeout(Publisher<U>) - Method in class io.reactivex.rxjava3.core.Maybe
-
If the current
Maybe
source didn't signal an event before the
timeoutIndicator
Publisher
signals, a
TimeoutException
is signaled instead.
- timeout(Publisher<U>, MaybeSource<? extends T>) - Method in class io.reactivex.rxjava3.core.Maybe
-
If the current
Maybe
didn't signal an event before the
timeoutIndicator
Publisher
signals,
the current
Maybe
is disposed and the
fallback
MaybeSource
subscribed to
as a continuation.
- timeout(Function<? super T, ? extends ObservableSource<V>>) - Method in class io.reactivex.rxjava3.core.Observable
-
Returns an Observable that mirrors the source ObservableSource, but notifies observers of a
TimeoutException
if an item emitted by the source ObservableSource doesn't arrive within a window of
time after the emission of the previous item, where that period of time is measured by an ObservableSource that
is a function of the previous item.
- timeout(Function<? super T, ? extends ObservableSource<V>>, ObservableSource<? extends T>) - Method in class io.reactivex.rxjava3.core.Observable
-
Returns an Observable that mirrors the source ObservableSource, but that switches to a fallback ObservableSource if
an item emitted by the source ObservableSource doesn't arrive within a window of time after the emission of the
previous item, where that period of time is measured by an ObservableSource that is a function of the previous
item.
- timeout(long, TimeUnit) - Method in class io.reactivex.rxjava3.core.Observable
-
Returns an Observable that mirrors the source ObservableSource but applies a timeout policy for each emitted
item.
- timeout(long, TimeUnit, ObservableSource<? extends T>) - Method in class io.reactivex.rxjava3.core.Observable
-
Returns an Observable that mirrors the source ObservableSource but applies a timeout policy for each emitted
item.
- timeout(long, TimeUnit, Scheduler, ObservableSource<? extends T>) - Method in class io.reactivex.rxjava3.core.Observable
-
Returns an Observable that mirrors the source ObservableSource but applies a timeout policy for each emitted
item using a specified Scheduler.
- timeout(long, TimeUnit, Scheduler) - Method in class io.reactivex.rxjava3.core.Observable
-
Returns an Observable that mirrors the source ObservableSource but applies a timeout policy for each emitted
item, where this policy is governed on a specified Scheduler.
- timeout(ObservableSource<U>, Function<? super T, ? extends ObservableSource<V>>) - Method in class io.reactivex.rxjava3.core.Observable
-
Returns an Observable that mirrors the source ObservableSource, but notifies observers of a
TimeoutException
if either the first item emitted by the source ObservableSource or any subsequent item
doesn't arrive within time windows defined by other ObservableSources.
- timeout(ObservableSource<U>, Function<? super T, ? extends ObservableSource<V>>, ObservableSource<? extends T>) - Method in class io.reactivex.rxjava3.core.Observable
-
Returns an Observable that mirrors the source ObservableSource, but switches to a fallback ObservableSource if either
the first item emitted by the source ObservableSource or any subsequent item doesn't arrive within time windows
defined by other ObservableSources.
- timeout(long, TimeUnit) - Method in class io.reactivex.rxjava3.core.Single
-
Signals a TimeoutException if the current Single doesn't signal a success value within the
specified timeout window.
- timeout(long, TimeUnit, Scheduler) - Method in class io.reactivex.rxjava3.core.Single
-
Signals a TimeoutException if the current Single doesn't signal a success value within the
specified timeout window.
- timeout(long, TimeUnit, Scheduler, SingleSource<? extends T>) - Method in class io.reactivex.rxjava3.core.Single
-
Runs the current Single and if it doesn't signal within the specified timeout window, it is
disposed and the other SingleSource subscribed to.
- timeout(long, TimeUnit, SingleSource<? extends T>) - Method in class io.reactivex.rxjava3.core.Single
-
Runs the current Single and if it doesn't signal within the specified timeout window, it is
disposed and the other SingleSource subscribed to.
- timeout - Variable in class io.reactivex.rxjava3.observers.BaseTestConsumer
-
Indicates that one of the awaitX method has timed out.
- timer(long, TimeUnit) - Static method in class io.reactivex.rxjava3.core.Completable
-
Returns a Completable instance that fires its onComplete event after the given delay elapsed.
- timer(long, TimeUnit, Scheduler) - Static method in class io.reactivex.rxjava3.core.Completable
-
Returns a Completable instance that fires its onComplete event after the given delay elapsed
by using the supplied scheduler.
- timer(long, TimeUnit) - Static method in class io.reactivex.rxjava3.core.Flowable
-
Returns a Flowable that emits 0L
after a specified delay, and then completes.
- timer(long, TimeUnit, Scheduler) - Static method in class io.reactivex.rxjava3.core.Flowable
-
Returns a Flowable that emits 0L
after a specified delay, on a specified Scheduler, and then
completes.
- timer(long, TimeUnit) - Static method in class io.reactivex.rxjava3.core.Maybe
-
Returns a Maybe that emits 0L
after a specified delay.
- timer(long, TimeUnit, Scheduler) - Static method in class io.reactivex.rxjava3.core.Maybe
-
Returns a Maybe that emits 0L
after a specified delay on a specified Scheduler.
- timer(long, TimeUnit) - Static method in class io.reactivex.rxjava3.core.Observable
-
Returns an Observable that emits 0L
after a specified delay, and then completes.
- timer(long, TimeUnit, Scheduler) - Static method in class io.reactivex.rxjava3.core.Observable
-
Returns an Observable that emits 0L
after a specified delay, on a specified Scheduler, and then
completes.
- timer(long, TimeUnit) - Static method in class io.reactivex.rxjava3.core.Single
-
Signals success with 0L value after the given delay for each SingleObserver.
- timer(long, TimeUnit, Scheduler) - Static method in class io.reactivex.rxjava3.core.Single
-
Signals success with 0L value after the given delay for each SingleObserver.
- timestamp() - Method in class io.reactivex.rxjava3.core.Flowable
-
Returns a Flowable that emits each item emitted by the source Publisher, wrapped in a
Timed
object.
- timestamp(Scheduler) - Method in class io.reactivex.rxjava3.core.Flowable
-
Returns a Flowable that emits each item emitted by the source Publisher, wrapped in a
Timed
object whose timestamps are provided by a specified Scheduler.
- timestamp(TimeUnit) - Method in class io.reactivex.rxjava3.core.Flowable
-
Returns a Flowable that emits each item emitted by the source Publisher, wrapped in a
Timed
object.
- timestamp(TimeUnit, Scheduler) - Method in class io.reactivex.rxjava3.core.Flowable
-
Returns a Flowable that emits each item emitted by the source Publisher, wrapped in a
Timed
object whose timestamps are provided by a specified Scheduler.
- timestamp() - Method in class io.reactivex.rxjava3.core.Observable
-
Returns an Observable that emits each item emitted by the source ObservableSource, wrapped in a
Timed
object.
- timestamp(Scheduler) - Method in class io.reactivex.rxjava3.core.Observable
-
Returns an Observable that emits each item emitted by the source ObservableSource, wrapped in a
Timed
object whose timestamps are provided by a specified Scheduler.
- timestamp(TimeUnit) - Method in class io.reactivex.rxjava3.core.Observable
-
Returns an Observable that emits each item emitted by the source ObservableSource, wrapped in a
Timed
object.
- timestamp(TimeUnit, Scheduler) - Method in class io.reactivex.rxjava3.core.Observable
-
Returns an Observable that emits each item emitted by the source ObservableSource, wrapped in a
Timed
object whose timestamps are provided by a specified Scheduler.
- to(CompletableConverter<? extends R>) - Method in class io.reactivex.rxjava3.core.Completable
-
Calls the specified converter function during assembly time and returns its resulting value.
- to(FlowableConverter<T, ? extends R>) - Method in class io.reactivex.rxjava3.core.Flowable
-
Calls the specified converter function during assembly time and returns its resulting value.
- to(MaybeConverter<T, ? extends R>) - Method in class io.reactivex.rxjava3.core.Maybe
-
Calls the specified converter function during assembly time and returns its resulting value.
- to(ObservableConverter<T, ? extends R>) - Method in class io.reactivex.rxjava3.core.Observable
-
Calls the specified converter function during assembly time and returns its resulting value.
- to(SingleConverter<T, ? extends R>) - Method in class io.reactivex.rxjava3.core.Single
-
Calls the specified converter function during assembly time and returns its resulting value.
- to(ParallelFlowableConverter<T, R>) - Method in class io.reactivex.rxjava3.parallel.ParallelFlowable
-
Calls the specified converter function during assembly time and returns its resulting value.
- toFlowable() - Method in class io.reactivex.rxjava3.core.Completable
-
Returns a Flowable which when subscribed to subscribes to this Completable and
relays the terminal events to the subscriber.
- toFlowable() - Method in class io.reactivex.rxjava3.core.Maybe
-
Converts this Maybe into a backpressure-aware Flowable instance composing cancellation
through.
- toFlowable(BackpressureStrategy) - Method in class io.reactivex.rxjava3.core.Observable
-
Converts the current Observable into a Flowable by applying the specified backpressure strategy.
- toFlowable() - Method in class io.reactivex.rxjava3.core.Single
-
- toFuture() - Method in class io.reactivex.rxjava3.core.Flowable
-
Returns a
Future
representing the only value emitted by this
Flowable
.
- toFuture() - Method in class io.reactivex.rxjava3.core.Observable
-
Returns a
Future
representing the only value emitted by this
Observable
.
- toFuture() - Method in class io.reactivex.rxjava3.core.Single
-
Returns a
Future
representing the single value emitted by this
Single
.
- toList() - Method in class io.reactivex.rxjava3.core.Flowable
-
Returns a Single that emits a single item, a list composed of all the items emitted by the
finite upstream source Publisher.
- toList(int) - Method in class io.reactivex.rxjava3.core.Flowable
-
Returns a Single that emits a single item, a list composed of all the items emitted by the
finite source Publisher.
- toList(Supplier<U>) - Method in class io.reactivex.rxjava3.core.Flowable
-
Returns a Single that emits a single item, a list composed of all the items emitted by the
finite source Publisher.
- toList() - Method in class io.reactivex.rxjava3.core.Observable
-
Returns a Single that emits a single item, a list composed of all the items emitted by the
finite source ObservableSource.
- toList(int) - Method in class io.reactivex.rxjava3.core.Observable
-
Returns a Single that emits a single item, a list composed of all the items emitted by the
finite source ObservableSource.
- toList(Supplier<U>) - Method in class io.reactivex.rxjava3.core.Observable
-
Returns a Single that emits a single item, a list composed of all the items emitted by the
finite source ObservableSource.
- toMap(Function<? super T, ? extends K>) - Method in class io.reactivex.rxjava3.core.Flowable
-
Returns a Single that emits a single HashMap containing all items emitted by the finite source Publisher,
mapped by the keys returned by a specified keySelector
function.
- toMap(Function<? super T, ? extends K>, Function<? super T, ? extends V>) - Method in class io.reactivex.rxjava3.core.Flowable
-
Returns a Single that emits a single HashMap containing values corresponding to items emitted by the
finite source Publisher, mapped by the keys returned by a specified keySelector
function.
- toMap(Function<? super T, ? extends K>, Function<? super T, ? extends V>, Supplier<? extends Map<K, V>>) - Method in class io.reactivex.rxjava3.core.Flowable
-
Returns a Single that emits a single Map, returned by a specified mapFactory
function, that
contains keys and values extracted from the items emitted by the finite source Publisher.
- toMap(Function<? super T, ? extends K>) - Method in class io.reactivex.rxjava3.core.Observable
-
Returns a Single that emits a single HashMap containing all items emitted by the
finite source ObservableSource, mapped by the keys returned by a specified
keySelector
function.
- toMap(Function<? super T, ? extends K>, Function<? super T, ? extends V>) - Method in class io.reactivex.rxjava3.core.Observable
-
Returns a Single that emits a single HashMap containing values corresponding to items emitted by the
finite source ObservableSource, mapped by the keys returned by a specified keySelector
function.
- toMap(Function<? super T, ? extends K>, Function<? super T, ? extends V>, Supplier<? extends Map<K, V>>) - Method in class io.reactivex.rxjava3.core.Observable
-
Returns a Single that emits a single Map, returned by a specified mapFactory
function, that
contains keys and values extracted from the items emitted by the finite source ObservableSource.
- toMaybe() - Method in class io.reactivex.rxjava3.core.Completable
-
Converts this Completable into a
Maybe
.
- toMaybe() - Method in class io.reactivex.rxjava3.core.Single
-
Converts this Single into a
Maybe
.
- toMultimap(Function<? super T, ? extends K>) - Method in class io.reactivex.rxjava3.core.Flowable
-
Returns a Single that emits a single HashMap that contains an ArrayList of items emitted by the
finite source Publisher keyed by a specified keySelector
function.
- toMultimap(Function<? super T, ? extends K>, Function<? super T, ? extends V>) - Method in class io.reactivex.rxjava3.core.Flowable
-
Returns a Single that emits a single HashMap that contains an ArrayList of values extracted by a
specified valueSelector
function from items emitted by the finite source Publisher, keyed by a
specified keySelector
function.
- toMultimap(Function<? super T, ? extends K>, Function<? super T, ? extends V>, Supplier<? extends Map<K, Collection<V>>>, Function<? super K, ? extends Collection<? super V>>) - Method in class io.reactivex.rxjava3.core.Flowable
-
Returns a Single that emits a single Map, returned by a specified mapFactory
function, that
contains a custom collection of values, extracted by a specified valueSelector
function from
items emitted by the finite source Publisher, and keyed by the keySelector
function.
- toMultimap(Function<? super T, ? extends K>, Function<? super T, ? extends V>, Supplier<Map<K, Collection<V>>>) - Method in class io.reactivex.rxjava3.core.Flowable
-
Returns a Single that emits a single Map, returned by a specified mapFactory
function, that
contains an ArrayList of values, extracted by a specified valueSelector
function from items
emitted by the finite source Publisher and keyed by the keySelector
function.
- toMultimap(Function<? super T, ? extends K>) - Method in class io.reactivex.rxjava3.core.Observable
-
Returns a Single that emits a single HashMap that contains an ArrayList of items emitted by the
finite source ObservableSource keyed by a specified keySelector
function.
- toMultimap(Function<? super T, ? extends K>, Function<? super T, ? extends V>) - Method in class io.reactivex.rxjava3.core.Observable
-
Returns a Single that emits a single HashMap that contains an ArrayList of values extracted by a
specified valueSelector
function from items emitted by the finite source ObservableSource,
keyed by a specified keySelector
function.
- toMultimap(Function<? super T, ? extends K>, Function<? super T, ? extends V>, Supplier<? extends Map<K, Collection<V>>>, Function<? super K, ? extends Collection<? super V>>) - Method in class io.reactivex.rxjava3.core.Observable
-
Returns a Single that emits a single Map, returned by a specified mapFactory
function, that
contains a custom collection of values, extracted by a specified valueSelector
function from
items emitted by the source ObservableSource, and keyed by the keySelector
function.
- toMultimap(Function<? super T, ? extends K>, Function<? super T, ? extends V>, Supplier<Map<K, Collection<V>>>) - Method in class io.reactivex.rxjava3.core.Observable
-
Returns a Single that emits a single Map, returned by a specified mapFactory
function, that
contains an ArrayList of values, extracted by a specified valueSelector
function from items
emitted by the finite source ObservableSource and keyed by the keySelector
function.
- toObservable() - Method in class io.reactivex.rxjava3.core.Completable
-
Returns an Observable which when subscribed to subscribes to this Completable and
relays the terminal events to the subscriber.
- toObservable() - Method in class io.reactivex.rxjava3.core.Flowable
-
Converts the current Flowable into a non-backpressured
Observable
.
- toObservable() - Method in class io.reactivex.rxjava3.core.Maybe
-
Converts this Maybe into an Observable instance composing disposal
through.
- toObservable() - Method in class io.reactivex.rxjava3.core.Single
-
- toSerialized() - Method in class io.reactivex.rxjava3.processors.FlowableProcessor
-
Wraps this FlowableProcessor and serializes the calls to the onSubscribe, onNext, onError and
onComplete methods, making them thread-safe.
- toSerialized() - Method in class io.reactivex.rxjava3.subjects.Subject
-
Wraps this Subject and serializes the calls to the onSubscribe, onNext, onError and
onComplete methods, making them thread-safe.
- toSingle(Supplier<? extends T>) - Method in class io.reactivex.rxjava3.core.Completable
-
Converts this Completable into a Single which when this Completable completes normally,
calls the given supplier and emits its returned value through onSuccess.
- toSingle() - Method in class io.reactivex.rxjava3.core.Maybe
-
Converts this Maybe into a Single instance composing disposal
through and turning an empty Maybe into a signal of NoSuchElementException.
- toSingleDefault(T) - Method in class io.reactivex.rxjava3.core.Completable
-
Converts this Completable into a Single which when this Completable completes normally,
emits the given value through onSuccess.
- toSortedList() - Method in class io.reactivex.rxjava3.core.Flowable
-
Returns a Single that emits a list that contains the items emitted by the finite source Publisher, in a
sorted order.
- toSortedList(Comparator<? super T>) - Method in class io.reactivex.rxjava3.core.Flowable
-
Returns a Single that emits a list that contains the items emitted by the finite source Publisher, in a
sorted order based on a specified comparison function.
- toSortedList(Comparator<? super T>, int) - Method in class io.reactivex.rxjava3.core.Flowable
-
Returns a Single that emits a list that contains the items emitted by the finite source Publisher, in a
sorted order based on a specified comparison function.
- toSortedList(int) - Method in class io.reactivex.rxjava3.core.Flowable
-
Returns a Flowable that emits a list that contains the items emitted by the finite source Publisher, in a
sorted order.
- toSortedList() - Method in class io.reactivex.rxjava3.core.Observable
-
Returns a Single that emits a list that contains the items emitted by the finite source ObservableSource, in a
sorted order.
- toSortedList(Comparator<? super T>) - Method in class io.reactivex.rxjava3.core.Observable
-
Returns a Single that emits a list that contains the items emitted by the finite source ObservableSource, in a
sorted order based on a specified comparison function.
- toSortedList(Comparator<? super T>, int) - Method in class io.reactivex.rxjava3.core.Observable
-
Returns a Single that emits a list that contains the items emitted by the finite source ObservableSource, in a
sorted order based on a specified comparison function.
- toSortedList(int) - Method in class io.reactivex.rxjava3.core.Observable
-
Returns a Single that emits a list that contains the items emitted by the finite source ObservableSource, in a
sorted order.
- toSortedList(Comparator<? super T>) - Method in class io.reactivex.rxjava3.parallel.ParallelFlowable
-
Sorts the 'rails' according to the comparator and returns a full sorted list as a Publisher.
- toSortedList(Comparator<? super T>, int) - Method in class io.reactivex.rxjava3.parallel.ParallelFlowable
-
Sorts the 'rails' according to the comparator and returns a full sorted list as a Publisher.
- toString() - Method in class io.reactivex.rxjava3.core.Notification
-
- toString() - Method in class io.reactivex.rxjava3.schedulers.Timed
-
- TRAMPOLINE - Static variable in annotation type io.reactivex.rxjava3.annotations.SchedulerSupport
-
- trampoline() - Static method in class io.reactivex.rxjava3.schedulers.Schedulers
-
Returns a default, shared
Scheduler
instance whose
Scheduler.Worker
instances queue work and execute them in a FIFO manner on one of the participating threads.
- triggerActions() - Method in class io.reactivex.rxjava3.schedulers.TestScheduler
-
Triggers any actions that have not yet been triggered and that are scheduled to be triggered at or
before this Scheduler's present time.
- tryOnError(Throwable) - Method in interface io.reactivex.rxjava3.core.CompletableEmitter
-
Attempts to emit the specified Throwable
error if the downstream
hasn't cancelled the sequence or is otherwise terminated, returning false
if the emission is not allowed to happen due to lifecycle restrictions.
- tryOnError(Throwable) - Method in interface io.reactivex.rxjava3.core.FlowableEmitter
-
Attempts to emit the specified Throwable
error if the downstream
hasn't cancelled the sequence or is otherwise terminated, returning false
if the emission is not allowed to happen due to lifecycle restrictions.
- tryOnError(Throwable) - Method in interface io.reactivex.rxjava3.core.MaybeEmitter
-
Attempts to emit the specified Throwable
error if the downstream
hasn't cancelled the sequence or is otherwise terminated, returning false
if the emission is not allowed to happen due to lifecycle restrictions.
- tryOnError(Throwable) - Method in interface io.reactivex.rxjava3.core.ObservableEmitter
-
Attempts to emit the specified Throwable
error if the downstream
hasn't cancelled the sequence or is otherwise terminated, returning false
if the emission is not allowed to happen due to lifecycle restrictions.
- tryOnError(Throwable) - Method in interface io.reactivex.rxjava3.core.SingleEmitter
-
Attempts to emit the specified Throwable
error if the downstream
hasn't cancelled the sequence or is otherwise terminated, returning false
if the emission is not allowed to happen due to lifecycle restrictions.
- zip(Iterable<? extends Publisher<? extends T>>, Function<? super Object[], ? extends R>) - Static method in class io.reactivex.rxjava3.core.Flowable
-
Returns a Flowable that emits the results of a specified combiner function applied to combinations of
items emitted, in sequence, by an Iterable of other Publishers.
- zip(Iterable<? extends Publisher<? extends T>>, Function<? super Object[], ? extends R>, boolean, int) - Static method in class io.reactivex.rxjava3.core.Flowable
-
Returns a Flowable that emits the results of a specified combiner function applied to combinations of
items emitted, in sequence, by an Iterable of other Publishers.
- zip(Publisher<? extends T1>, Publisher<? extends T2>, BiFunction<? super T1, ? super T2, ? extends R>) - Static method in class io.reactivex.rxjava3.core.Flowable
-
Returns a Flowable that emits the results of a specified combiner function applied to combinations of
two items emitted, in sequence, by two other Publishers.
- zip(Publisher<? extends T1>, Publisher<? extends T2>, BiFunction<? super T1, ? super T2, ? extends R>, boolean) - Static method in class io.reactivex.rxjava3.core.Flowable
-
Returns a Flowable that emits the results of a specified combiner function applied to combinations of
two items emitted, in sequence, by two other Publishers.
- zip(Publisher<? extends T1>, Publisher<? extends T2>, BiFunction<? super T1, ? super T2, ? extends R>, boolean, int) - Static method in class io.reactivex.rxjava3.core.Flowable
-
Returns a Flowable that emits the results of a specified combiner function applied to combinations of
two items emitted, in sequence, by two other Publishers.
- zip(Publisher<? extends T1>, Publisher<? extends T2>, Publisher<? extends T3>, Function3<? super T1, ? super T2, ? super T3, ? extends R>) - Static method in class io.reactivex.rxjava3.core.Flowable
-
Returns a Flowable that emits the results of a specified combiner function applied to combinations of
three items emitted, in sequence, by three other Publishers.
- zip(Publisher<? extends T1>, Publisher<? extends T2>, Publisher<? extends T3>, Publisher<? extends T4>, Function4<? super T1, ? super T2, ? super T3, ? super T4, ? extends R>) - Static method in class io.reactivex.rxjava3.core.Flowable
-
Returns a Flowable that emits the results of a specified combiner function applied to combinations of
four items emitted, in sequence, by four other Publishers.
- zip(Publisher<? extends T1>, Publisher<? extends T2>, Publisher<? extends T3>, Publisher<? extends T4>, Publisher<? extends T5>, Function5<? super T1, ? super T2, ? super T3, ? super T4, ? super T5, ? extends R>) - Static method in class io.reactivex.rxjava3.core.Flowable
-
Returns a Flowable that emits the results of a specified combiner function applied to combinations of
five items emitted, in sequence, by five other Publishers.
- zip(Publisher<? extends T1>, Publisher<? extends T2>, Publisher<? extends T3>, Publisher<? extends T4>, Publisher<? extends T5>, Publisher<? extends T6>, Function6<? super T1, ? super T2, ? super T3, ? super T4, ? super T5, ? super T6, ? extends R>) - Static method in class io.reactivex.rxjava3.core.Flowable
-
Returns a Flowable that emits the results of a specified combiner function applied to combinations of
six items emitted, in sequence, by six other Publishers.
- zip(Publisher<? extends T1>, Publisher<? extends T2>, Publisher<? extends T3>, Publisher<? extends T4>, Publisher<? extends T5>, Publisher<? extends T6>, Publisher<? extends T7>, Function7<? super T1, ? super T2, ? super T3, ? super T4, ? super T5, ? super T6, ? super T7, ? extends R>) - Static method in class io.reactivex.rxjava3.core.Flowable
-
Returns a Flowable that emits the results of a specified combiner function applied to combinations of
seven items emitted, in sequence, by seven other Publishers.
- zip(Publisher<? extends T1>, Publisher<? extends T2>, Publisher<? extends T3>, Publisher<? extends T4>, Publisher<? extends T5>, Publisher<? extends T6>, Publisher<? extends T7>, Publisher<? extends T8>, Function8<? super T1, ? super T2, ? super T3, ? super T4, ? super T5, ? super T6, ? super T7, ? super T8, ? extends R>) - Static method in class io.reactivex.rxjava3.core.Flowable
-
Returns a Flowable that emits the results of a specified combiner function applied to combinations of
eight items emitted, in sequence, by eight other Publishers.
- zip(Publisher<? extends T1>, Publisher<? extends T2>, Publisher<? extends T3>, Publisher<? extends T4>, Publisher<? extends T5>, Publisher<? extends T6>, Publisher<? extends T7>, Publisher<? extends T8>, Publisher<? extends T9>, Function9<? super T1, ? super T2, ? super T3, ? super T4, ? super T5, ? super T6, ? super T7, ? super T8, ? super T9, ? extends R>) - Static method in class io.reactivex.rxjava3.core.Flowable
-
Returns a Flowable that emits the results of a specified combiner function applied to combinations of
nine items emitted, in sequence, by nine other Publishers.
- zip(Iterable<? extends MaybeSource<? extends T>>, Function<? super Object[], ? extends R>) - Static method in class io.reactivex.rxjava3.core.Maybe
-
Returns a Maybe that emits the results of a specified combiner function applied to combinations of
items emitted, in sequence, by an Iterable of other MaybeSources.
- zip(MaybeSource<? extends T1>, MaybeSource<? extends T2>, BiFunction<? super T1, ? super T2, ? extends R>) - Static method in class io.reactivex.rxjava3.core.Maybe
-
Returns a Maybe that emits the results of a specified combiner function applied to combinations of
two items emitted, in sequence, by two other MaybeSources.
- zip(MaybeSource<? extends T1>, MaybeSource<? extends T2>, MaybeSource<? extends T3>, Function3<? super T1, ? super T2, ? super T3, ? extends R>) - Static method in class io.reactivex.rxjava3.core.Maybe
-
Returns a Maybe that emits the results of a specified combiner function applied to combinations of
three items emitted, in sequence, by three other MaybeSources.
- zip(MaybeSource<? extends T1>, MaybeSource<? extends T2>, MaybeSource<? extends T3>, MaybeSource<? extends T4>, Function4<? super T1, ? super T2, ? super T3, ? super T4, ? extends R>) - Static method in class io.reactivex.rxjava3.core.Maybe
-
Returns a Maybe that emits the results of a specified combiner function applied to combinations of
four items emitted, in sequence, by four other MaybeSources.
- zip(MaybeSource<? extends T1>, MaybeSource<? extends T2>, MaybeSource<? extends T3>, MaybeSource<? extends T4>, MaybeSource<? extends T5>, Function5<? super T1, ? super T2, ? super T3, ? super T4, ? super T5, ? extends R>) - Static method in class io.reactivex.rxjava3.core.Maybe
-
Returns a Maybe that emits the results of a specified combiner function applied to combinations of
five items emitted, in sequence, by five other MaybeSources.
- zip(MaybeSource<? extends T1>, MaybeSource<? extends T2>, MaybeSource<? extends T3>, MaybeSource<? extends T4>, MaybeSource<? extends T5>, MaybeSource<? extends T6>, Function6<? super T1, ? super T2, ? super T3, ? super T4, ? super T5, ? super T6, ? extends R>) - Static method in class io.reactivex.rxjava3.core.Maybe
-
Returns a Maybe that emits the results of a specified combiner function applied to combinations of
six items emitted, in sequence, by six other MaybeSources.
- zip(MaybeSource<? extends T1>, MaybeSource<? extends T2>, MaybeSource<? extends T3>, MaybeSource<? extends T4>, MaybeSource<? extends T5>, MaybeSource<? extends T6>, MaybeSource<? extends T7>, Function7<? super T1, ? super T2, ? super T3, ? super T4, ? super T5, ? super T6, ? super T7, ? extends R>) - Static method in class io.reactivex.rxjava3.core.Maybe
-
Returns a Maybe that emits the results of a specified combiner function applied to combinations of
seven items emitted, in sequence, by seven other MaybeSources.
- zip(MaybeSource<? extends T1>, MaybeSource<? extends T2>, MaybeSource<? extends T3>, MaybeSource<? extends T4>, MaybeSource<? extends T5>, MaybeSource<? extends T6>, MaybeSource<? extends T7>, MaybeSource<? extends T8>, Function8<? super T1, ? super T2, ? super T3, ? super T4, ? super T5, ? super T6, ? super T7, ? super T8, ? extends R>) - Static method in class io.reactivex.rxjava3.core.Maybe
-
Returns a Maybe that emits the results of a specified combiner function applied to combinations of
eight items emitted, in sequence, by eight other MaybeSources.
- zip(MaybeSource<? extends T1>, MaybeSource<? extends T2>, MaybeSource<? extends T3>, MaybeSource<? extends T4>, MaybeSource<? extends T5>, MaybeSource<? extends T6>, MaybeSource<? extends T7>, MaybeSource<? extends T8>, MaybeSource<? extends T9>, Function9<? super T1, ? super T2, ? super T3, ? super T4, ? super T5, ? super T6, ? super T7, ? super T8, ? super T9, ? extends R>) - Static method in class io.reactivex.rxjava3.core.Maybe
-
Returns a Maybe that emits the results of a specified combiner function applied to combinations of
nine items emitted, in sequence, by nine other MaybeSources.
- zip(Iterable<? extends ObservableSource<? extends T>>, Function<? super Object[], ? extends R>) - Static method in class io.reactivex.rxjava3.core.Observable
-
Returns an Observable that emits the results of a specified combiner function applied to combinations of
items emitted, in sequence, by an Iterable of other ObservableSources.
- zip(Iterable<? extends ObservableSource<? extends T>>, Function<? super Object[], ? extends R>, boolean, int) - Static method in class io.reactivex.rxjava3.core.Observable
-
Returns an Observable that emits the results of a specified combiner function applied to combinations of
items emitted, in sequence, by an Iterable of other ObservableSources.
- zip(ObservableSource<? extends T1>, ObservableSource<? extends T2>, BiFunction<? super T1, ? super T2, ? extends R>) - Static method in class io.reactivex.rxjava3.core.Observable
-
Returns an Observable that emits the results of a specified combiner function applied to combinations of
two items emitted, in sequence, by two other ObservableSources.
- zip(ObservableSource<? extends T1>, ObservableSource<? extends T2>, BiFunction<? super T1, ? super T2, ? extends R>, boolean) - Static method in class io.reactivex.rxjava3.core.Observable
-
Returns an Observable that emits the results of a specified combiner function applied to combinations of
two items emitted, in sequence, by two other ObservableSources.
- zip(ObservableSource<? extends T1>, ObservableSource<? extends T2>, BiFunction<? super T1, ? super T2, ? extends R>, boolean, int) - Static method in class io.reactivex.rxjava3.core.Observable
-
Returns an Observable that emits the results of a specified combiner function applied to combinations of
two items emitted, in sequence, by two other ObservableSources.
- zip(ObservableSource<? extends T1>, ObservableSource<? extends T2>, ObservableSource<? extends T3>, Function3<? super T1, ? super T2, ? super T3, ? extends R>) - Static method in class io.reactivex.rxjava3.core.Observable
-
Returns an Observable that emits the results of a specified combiner function applied to combinations of
three items emitted, in sequence, by three other ObservableSources.
- zip(ObservableSource<? extends T1>, ObservableSource<? extends T2>, ObservableSource<? extends T3>, ObservableSource<? extends T4>, Function4<? super T1, ? super T2, ? super T3, ? super T4, ? extends R>) - Static method in class io.reactivex.rxjava3.core.Observable
-
Returns an Observable that emits the results of a specified combiner function applied to combinations of
four items emitted, in sequence, by four other ObservableSources.
- zip(ObservableSource<? extends T1>, ObservableSource<? extends T2>, ObservableSource<? extends T3>, ObservableSource<? extends T4>, ObservableSource<? extends T5>, Function5<? super T1, ? super T2, ? super T3, ? super T4, ? super T5, ? extends R>) - Static method in class io.reactivex.rxjava3.core.Observable
-
Returns an Observable that emits the results of a specified combiner function applied to combinations of
five items emitted, in sequence, by five other ObservableSources.
- zip(ObservableSource<? extends T1>, ObservableSource<? extends T2>, ObservableSource<? extends T3>, ObservableSource<? extends T4>, ObservableSource<? extends T5>, ObservableSource<? extends T6>, Function6<? super T1, ? super T2, ? super T3, ? super T4, ? super T5, ? super T6, ? extends R>) - Static method in class io.reactivex.rxjava3.core.Observable
-
Returns an Observable that emits the results of a specified combiner function applied to combinations of
six items emitted, in sequence, by six other ObservableSources.
- zip(ObservableSource<? extends T1>, ObservableSource<? extends T2>, ObservableSource<? extends T3>, ObservableSource<? extends T4>, ObservableSource<? extends T5>, ObservableSource<? extends T6>, ObservableSource<? extends T7>, Function7<? super T1, ? super T2, ? super T3, ? super T4, ? super T5, ? super T6, ? super T7, ? extends R>) - Static method in class io.reactivex.rxjava3.core.Observable
-
Returns an Observable that emits the results of a specified combiner function applied to combinations of
seven items emitted, in sequence, by seven other ObservableSources.
- zip(ObservableSource<? extends T1>, ObservableSource<? extends T2>, ObservableSource<? extends T3>, ObservableSource<? extends T4>, ObservableSource<? extends T5>, ObservableSource<? extends T6>, ObservableSource<? extends T7>, ObservableSource<? extends T8>, Function8<? super T1, ? super T2, ? super T3, ? super T4, ? super T5, ? super T6, ? super T7, ? super T8, ? extends R>) - Static method in class io.reactivex.rxjava3.core.Observable
-
Returns an Observable that emits the results of a specified combiner function applied to combinations of
eight items emitted, in sequence, by eight other ObservableSources.
- zip(ObservableSource<? extends T1>, ObservableSource<? extends T2>, ObservableSource<? extends T3>, ObservableSource<? extends T4>, ObservableSource<? extends T5>, ObservableSource<? extends T6>, ObservableSource<? extends T7>, ObservableSource<? extends T8>, ObservableSource<? extends T9>, Function9<? super T1, ? super T2, ? super T3, ? super T4, ? super T5, ? super T6, ? super T7, ? super T8, ? super T9, ? extends R>) - Static method in class io.reactivex.rxjava3.core.Observable
-
Returns an Observable that emits the results of a specified combiner function applied to combinations of
nine items emitted, in sequence, by nine other ObservableSources.
- zip(Iterable<? extends SingleSource<? extends T>>, Function<? super Object[], ? extends R>) - Static method in class io.reactivex.rxjava3.core.Single
-
Waits until all SingleSource sources provided by the Iterable sequence signal a success
value and calls a zipper function with an array of these values to return a result
to be emitted to downstream.
- zip(SingleSource<? extends T1>, SingleSource<? extends T2>, BiFunction<? super T1, ? super T2, ? extends R>) - Static method in class io.reactivex.rxjava3.core.Single
-
Returns a Single that emits the results of a specified combiner function applied to two items emitted by
two other Singles.
- zip(SingleSource<? extends T1>, SingleSource<? extends T2>, SingleSource<? extends T3>, Function3<? super T1, ? super T2, ? super T3, ? extends R>) - Static method in class io.reactivex.rxjava3.core.Single
-
Returns a Single that emits the results of a specified combiner function applied to three items emitted
by three other Singles.
- zip(SingleSource<? extends T1>, SingleSource<? extends T2>, SingleSource<? extends T3>, SingleSource<? extends T4>, Function4<? super T1, ? super T2, ? super T3, ? super T4, ? extends R>) - Static method in class io.reactivex.rxjava3.core.Single
-
Returns a Single that emits the results of a specified combiner function applied to four items
emitted by four other Singles.
- zip(SingleSource<? extends T1>, SingleSource<? extends T2>, SingleSource<? extends T3>, SingleSource<? extends T4>, SingleSource<? extends T5>, Function5<? super T1, ? super T2, ? super T3, ? super T4, ? super T5, ? extends R>) - Static method in class io.reactivex.rxjava3.core.Single
-
Returns a Single that emits the results of a specified combiner function applied to five items
emitted by five other Singles.
- zip(SingleSource<? extends T1>, SingleSource<? extends T2>, SingleSource<? extends T3>, SingleSource<? extends T4>, SingleSource<? extends T5>, SingleSource<? extends T6>, Function6<? super T1, ? super T2, ? super T3, ? super T4, ? super T5, ? super T6, ? extends R>) - Static method in class io.reactivex.rxjava3.core.Single
-
Returns a Single that emits the results of a specified combiner function applied to six items
emitted by six other Singles.
- zip(SingleSource<? extends T1>, SingleSource<? extends T2>, SingleSource<? extends T3>, SingleSource<? extends T4>, SingleSource<? extends T5>, SingleSource<? extends T6>, SingleSource<? extends T7>, Function7<? super T1, ? super T2, ? super T3, ? super T4, ? super T5, ? super T6, ? super T7, ? extends R>) - Static method in class io.reactivex.rxjava3.core.Single
-
Returns a Single that emits the results of a specified combiner function applied to seven items
emitted by seven other Singles.
- zip(SingleSource<? extends T1>, SingleSource<? extends T2>, SingleSource<? extends T3>, SingleSource<? extends T4>, SingleSource<? extends T5>, SingleSource<? extends T6>, SingleSource<? extends T7>, SingleSource<? extends T8>, Function8<? super T1, ? super T2, ? super T3, ? super T4, ? super T5, ? super T6, ? super T7, ? super T8, ? extends R>) - Static method in class io.reactivex.rxjava3.core.Single
-
Returns a Single that emits the results of a specified combiner function applied to eight items
emitted by eight other Singles.
- zip(SingleSource<? extends T1>, SingleSource<? extends T2>, SingleSource<? extends T3>, SingleSource<? extends T4>, SingleSource<? extends T5>, SingleSource<? extends T6>, SingleSource<? extends T7>, SingleSource<? extends T8>, SingleSource<? extends T9>, Function9<? super T1, ? super T2, ? super T3, ? super T4, ? super T5, ? super T6, ? super T7, ? super T8, ? super T9, ? extends R>) - Static method in class io.reactivex.rxjava3.core.Single
-
Returns a Single that emits the results of a specified combiner function applied to nine items
emitted by nine other Singles.
- zipArray(Function<? super Object[], ? extends R>, boolean, int, Publisher<? extends T>...) - Static method in class io.reactivex.rxjava3.core.Flowable
-
Returns a Flowable that emits the results of a specified combiner function applied to combinations of
items emitted, in sequence, by an array of other Publishers.
- zipArray(Function<? super Object[], ? extends R>, MaybeSource<? extends T>...) - Static method in class io.reactivex.rxjava3.core.Maybe
-
Returns a Maybe that emits the results of a specified combiner function applied to combinations of
items emitted, in sequence, by an array of other MaybeSources.
- zipArray(Function<? super Object[], ? extends R>, boolean, int, ObservableSource<? extends T>...) - Static method in class io.reactivex.rxjava3.core.Observable
-
Returns an Observable that emits the results of a specified combiner function applied to combinations of
items emitted, in sequence, by an array of other ObservableSources.
- zipArray(Function<? super Object[], ? extends R>, SingleSource<? extends T>...) - Static method in class io.reactivex.rxjava3.core.Single
-
Waits until all SingleSource sources provided via an array signal a success
value and calls a zipper function with an array of these values to return a result
to be emitted to downstream.
- zipWith(Iterable<U>, BiFunction<? super T, ? super U, ? extends R>) - Method in class io.reactivex.rxjava3.core.Flowable
-
Returns a Flowable that emits items that are the result of applying a specified function to pairs of
values, one each from the source Publisher and a specified Iterable sequence.
- zipWith(Publisher<? extends U>, BiFunction<? super T, ? super U, ? extends R>) - Method in class io.reactivex.rxjava3.core.Flowable
-
Returns a Flowable that emits items that are the result of applying a specified function to pairs of
values, one each from the source Publisher and another specified Publisher.
- zipWith(Publisher<? extends U>, BiFunction<? super T, ? super U, ? extends R>, boolean) - Method in class io.reactivex.rxjava3.core.Flowable
-
Returns a Flowable that emits items that are the result of applying a specified function to pairs of
values, one each from the source Publisher and another specified Publisher.
- zipWith(Publisher<? extends U>, BiFunction<? super T, ? super U, ? extends R>, boolean, int) - Method in class io.reactivex.rxjava3.core.Flowable
-
Returns a Flowable that emits items that are the result of applying a specified function to pairs of
values, one each from the source Publisher and another specified Publisher.
- zipWith(MaybeSource<? extends U>, BiFunction<? super T, ? super U, ? extends R>) - Method in class io.reactivex.rxjava3.core.Maybe
-
Waits until this and the other MaybeSource signal a success value then applies the given BiFunction
to those values and emits the BiFunction's resulting value to downstream.
- zipWith(Iterable<U>, BiFunction<? super T, ? super U, ? extends R>) - Method in class io.reactivex.rxjava3.core.Observable
-
Returns an Observable that emits items that are the result of applying a specified function to pairs of
values, one each from the source ObservableSource and a specified Iterable sequence.
- zipWith(ObservableSource<? extends U>, BiFunction<? super T, ? super U, ? extends R>) - Method in class io.reactivex.rxjava3.core.Observable
-
Returns an Observable that emits items that are the result of applying a specified function to pairs of
values, one each from the source ObservableSource and another specified ObservableSource.
- zipWith(ObservableSource<? extends U>, BiFunction<? super T, ? super U, ? extends R>, boolean) - Method in class io.reactivex.rxjava3.core.Observable
-
Returns an Observable that emits items that are the result of applying a specified function to pairs of
values, one each from the source ObservableSource and another specified ObservableSource.
- zipWith(ObservableSource<? extends U>, BiFunction<? super T, ? super U, ? extends R>, boolean, int) - Method in class io.reactivex.rxjava3.core.Observable
-
Returns an Observable that emits items that are the result of applying a specified function to pairs of
values, one each from the source ObservableSource and another specified ObservableSource.
- zipWith(SingleSource<U>, BiFunction<? super T, ? super U, ? extends R>) - Method in class io.reactivex.rxjava3.core.Single
-
Returns a Single that emits the result of applying a specified function to the pair of items emitted by
the source Single and another specified Single.