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