Uses of Package
io.reactivex.rxjava3.observers
-
Packages that use io.reactivex.rxjava3.observers Package Description io.reactivex.rxjava3.core Base reactive classes:Flowable
,Observable
,Single
,Maybe
andCompletable
; base reactive consumers; other common base interfaces.io.reactivex.rxjava3.internal.observers io.reactivex.rxjava3.internal.operators.maybe io.reactivex.rxjava3.internal.operators.observable io.reactivex.rxjava3.internal.subscribers io.reactivex.rxjava3.observers Default wrappers and implementations for observer-based consumer classes and interfaces, including disposable and resource-tracking variants and theTestObserver
that allows unit testingObservable
-,Single
-,Maybe
- andCompletable
-based flows.io.reactivex.rxjava3.subscribers Default wrappers and implementations forSubscriber
-based consumer classes and interfaces, including disposable (DisposableSubscriber
) and resource-tracking (ResourceSubscriber
) variants and theTestSubscriber
that allows unit testingFlowable
-based flows. -
Classes in io.reactivex.rxjava3.observers used by io.reactivex.rxjava3.core Class Description TestObserver AnObserver
,MaybeObserver
,SingleObserver
andCompletableObserver
composite that can record events fromObservable
s,Maybe
s,Single
s andCompletable
s and allows making assertions about them. -
Classes in io.reactivex.rxjava3.observers used by io.reactivex.rxjava3.internal.observers Class Description LambdaConsumerIntrospection An interface that indicates that the implementing type is composed of individual components and exposes information about their behavior. -
Classes in io.reactivex.rxjava3.observers used by io.reactivex.rxjava3.internal.operators.maybe Class Description LambdaConsumerIntrospection An interface that indicates that the implementing type is composed of individual components and exposes information about their behavior. -
Classes in io.reactivex.rxjava3.observers used by io.reactivex.rxjava3.internal.operators.observable Class Description DefaultObserver Abstract base implementation of anObserver
with support for cancelling a subscription viaDefaultObserver.cancel()
(synchronously) and callsDefaultObserver.onStart()
when the subscription happens.DisposableObserver An abstractObserver
that allows asynchronous cancellation by implementingDisposable
.SerializedObserver Serializes access to theObserver.onNext(Object)
,Observer.onError(Throwable)
andObserver.onComplete()
methods of anotherObserver
. -
Classes in io.reactivex.rxjava3.observers used by io.reactivex.rxjava3.internal.subscribers Class Description LambdaConsumerIntrospection An interface that indicates that the implementing type is composed of individual components and exposes information about their behavior. -
Classes in io.reactivex.rxjava3.observers used by io.reactivex.rxjava3.observers Class Description BaseTestConsumer Base class with shared infrastructure to supportTestSubscriber
andTestObserver
.TestObserver AnObserver
,MaybeObserver
,SingleObserver
andCompletableObserver
composite that can record events fromObservable
s,Maybe
s,Single
s andCompletable
s and allows making assertions about them.TestObserver.EmptyObserver An observer that ignores all events and does not report errors. -
Classes in io.reactivex.rxjava3.observers used by io.reactivex.rxjava3.subscribers Class Description BaseTestConsumer Base class with shared infrastructure to supportTestSubscriber
andTestObserver
.