Uses of Class
rx.subjects.ReplaySubject
Packages that use ReplaySubject
Package
Description
Classes extending the Observable base reactive class and implementing
the Observer interface at the same time (aka hot Observables).
-
Uses of ReplaySubject in rx.subjects
Methods in rx.subjects that return ReplaySubjectModifier and TypeMethodDescriptionstatic <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, 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.