| Package | Description |
|---|---|
| rx |
Rx Observables
|
| rx.internal.operators |
Operators that allow composing Observables to transform and manipulate data in an asynchronous, functional and thread-safe manner.
|
| Modifier and Type | Method and Description |
|---|---|
ConnectableObservable |
Observable.publish()
Returns a
ConnectableObservable, which is a variety of Observable that waits until its
connect method is called before it begins emitting items to those
Observers that have subscribed to it.
|
ConnectableObservable |
Observable.replay()
Returns a
ConnectableObservable that shares a single subscription to the underlying Observable that will replay all of its items and notifications to any future
Observer.
|
ConnectableObservable |
Observable.replay(int bufferSize)
Returns a
ConnectableObservable that shares a single subscription to the source Observable that replays at most
bufferSize items emitted by that Observable.
|
ConnectableObservable |
Observable.replay(int bufferSize, long time, TimeUnit
Returns a
ConnectableObservable that shares a single subscription to the source Observable and replays at most
bufferSize items that were emitted during a specified time window.
|
ConnectableObservable |
Observable.replay(int bufferSize, long time, TimeUnit
Returns a
ConnectableObservable that shares a single subscription to the source Observable and that replays a maximum of
bufferSize items that are emitted within a specified time window.
|
ConnectableObservable |
Observable.replay(int bufferSize, Scheduler
Returns a
ConnectableObservable that shares a single subscription to the source Observable and replays at most
bufferSize items emitted by that Observable.
|
ConnectableObservable |
Observable.replay(long time, TimeUnit
Returns a
ConnectableObservable that shares a single subscription to the source Observable and replays all items emitted by that Observable within a specified time window.
|
ConnectableObservable |
Observable.replay(long time, TimeUnit
Returns a
ConnectableObservable that shares a single subscription to the source Observable and replays all items emitted by that Observable within a specified time window.
|
ConnectableObservable |
Observable.replay(Scheduler
Returns a
ConnectableObservable that shares a single subscription to the source Observable that will replay all of its items and notifications to any future
Observer on the given
Scheduler.
|
| Modifier and Type | Class and Description |
|---|---|
class |
OperatorMulticast<T
Shares a single subscription to a source through a Subject.
|
class |
OperatorPublish<T>
|
| Modifier and Type | Method and Description |
|---|---|
static <T> ConnectableObservable |
OperatorPublish.create(Observable
|
| Constructor and Description | |
|---|---|
OnSubscribeRefCount(ConnectableObservable
Constructor.
|