| Package | Description |
|---|---|
| rx.internal.operators |
Operators that allow composing Observables to transform and manipulate data in an asynchronous, functional and thread-safe manner.
|
| rx.subjects |
| Modifier and Type | Class and Description |
|---|---|
class |
BufferUntilSubscriber<T>
A solution to the "time gap" problem that occurs with
groupBy and
pivot.
|
static class |
OperatorReplay
A subject that wraps another subject.
|
| Modifier and Type | Field and Description |
|---|---|
protected Subject |
OnSubscribeCache.cache
|
| Modifier and Type | Method and Description |
|---|---|
static <T> Subject |
OperatorReplay.createScheduledSubject(Subject
Creates a subject whose client observers will observe events propagated through the given wrapped subject.
|
| Modifier and Type | Method and Description |
|---|---|
static <T> Subject |
OperatorReplay.createScheduledSubject(Subject
Creates a subject whose client observers will observe events propagated through the given wrapped subject.
|
| Constructor and Description | |
|---|---|
SubjectWrapper(Observable
|
| Constructor and Description | |
|---|---|
OnSubscribeMulticastSelector(Observable
|
|
OperatorMulticast(Observable
|
| Modifier and Type | Class and Description |
|---|---|
class |
AsyncSubject<T>
Subject that publishes only the last item observed to each
Observer that has subscribed, when the source
Observable completes.
|
class |
BehaviorSubject<T>
Subject that emits the most recent item it has observed and all subsequent observed items to each subscribed
Observer.
|
class |
PublishSubject<T>
Subject that, once an
Observer has subscribed, emits all subsequently observed items to the subscriber.
|
class |
ReplaySubject<T>
Subject that buffers all items it observes and replays them to any
Observer that subscribes.
|
class |
SerializedSubject<T
Wraps a
Subject so that it is safe to call its various
on methods from different threads.
|
class |
TestSubject<T>
A variety of Subject that is useful for testing purposes.
|
| Constructor and Description | |
|---|---|
SerializedSubject(Subject
|