Package | Description |
---|---|
rx.subjects |
Classes extending the Observable base reactive class and implementing
the Observer interface at the same time (aka hot Observables).
|
Class and Description |
---|
AsyncSubject
Subject that publishes only the last item observed to each
Observer once the source Observable
has completed. |
BehaviorSubject
Subject that emits the most recent item it has observed and all subsequent observed items to each subscribed
Observer . |
PublishSubject
Subject that, once an
Observer has subscribed, emits all subsequently observed items to the
subscriber. |
ReplaySubject
Subject that buffers all items it observes and replays them to any
Observer that subscribes. |
SerializedSubject
Wraps a
Subject so that it is safe to call its various on methods from different threads. |
Subject
Represents an object that is both an Observable and an Observer.
|
TestSubject
A variety of Subject that is useful for testing purposes.
|
UnicastSubject
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.
|
Copyright © 2018. All rights reserved.