| Package | Description |
|---|---|
| rx.subjects |
| Modifier and Type | Method and Description |
|---|---|
static <T> ReplaySubject |
ReplaySubject.create()
Creates an unbounded replay subject.
|
static <T> ReplaySubject |
ReplaySubject.create(int capacity)
Creates an unbounded replay subject with the specified initial buffer capacity.
|
static <T> ReplaySubject |
ReplaySubject.createWithSize(int size)
Creates a size-bounded replay subject.
|
static <T> ReplaySubject |
ReplaySubject.createWithTime(long time, TimeUnit
Creates a time-bounded replay subject.
|
static <T> ReplaySubject |
ReplaySubject.createWithTimeAndSize(long time, TimeUnit
Creates a time- and size-bounded replay subject.
|