Uses of Package
rx.subjects
Packages that use rx.subjects
Package
Description
Operators that allow composing Observables to transform and
manipulate data in an asynchronous, functional and thread-safe manner.
Classes extending the Observable base reactive class and implementing
the Observer interface at the same time (aka hot Observables).
-
Classes in rx.subjects used by rx.internal.operators
-
Classes in rx.subjects used by rx.subjectsClassDescriptionSubject that publishes only the last item observed to each
Observeronce the sourceObservablehas completed.Subject that emits the most recent item it has observed and all subsequent observed items to each subscribedObserver.Subject that, once anObserverhas subscribed, emits all subsequently observed items to the subscriber.Subject that buffers all items it observes and replays them to anyObserverthat subscribes.The base interface for buffering signals to be replayed to individual Subscribers.A producer and subscription implementation that tracks the current replay position of a particular subscriber.Holds onto the array of Subscriber-wrapping ReplayProducers and the buffer that holds values to be replayed; it manages subscription and signal dispatching.Wraps aSubjectso that it is safe to call its variousonmethods from different threads.Represents an object that is both an Observable and an Observer.Represents the typical state and OnSubscribe logic for a Subject implementation.State-machine representing the termination state and active SubjectObservers.Observer wrapping the actual Subscriber and providing various emission facilities.A variety of Subject that is useful for testing purposes.A Subject variant which buffers events until a single Subscriber arrives and replays them to it and potentially switches to direct delivery once the Subscriber caught up and requested an unlimited amount.The single-consumption replaying state.