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.
|
(package private) static <T> ReplaySubject<T> |
ReplaySubject.createUnbounded() |
Creates an unbounded replay subject with the bounded-implementation for testing purposes.
|
(package private) static <T> ReplaySubject<T> |
ReplaySubject.createUnboundedTime() |
Creates an unbounded replay subject with the time-bounded-implementation for testing purposes.
|
static <T> ReplaySubject<T> |
ReplaySubject.createWithSize(int size) |
Creates a size-bounded replay subject.
|
static <T> ReplaySubject<T> |
ReplaySubject.createWithTime(long time,
java.util.concurrent.TimeUnit unit,
Scheduler scheduler) |
Creates a time-bounded replay subject.
|
static <T> ReplaySubject<T> |
ReplaySubject.createWithTimeAndSize(long time,
java.util.concurrent.TimeUnit unit,
int size,
Scheduler scheduler) |
Creates a time- and size-bounded replay subject.
|