| Class | Description |
|---|---|
| AsyncSubject<T> |
A Subject that emits the very last value followed by a completion event or the received error to Subscribers.
|
| BehaviorSubject<T> | |
| PublishSubject<T> |
A Subject that multicasts events to Subscribers that are currently subscribed to it.
|
| ReplaySubject<T> |
Replays events to Subscribers.
|
| Subject<T,R> |
Represents a Subscriber and an Observable (Publisher) at the same time, allowing
multicasting events from a single source to multiple child Subscribers.
|
| UnicastSubject<T> |
Subject that allows only a single Subscriber to subscribe to it during its lifetime.
|