Uses of Class
rx.subjects.BehaviorSubject
-
Packages that use BehaviorSubject Package Description rx.subjects Classes extending the Observable base reactive class and implementing the Observer interface at the same time (aka hot Observables). -
-
Uses of BehaviorSubject in rx.subjects
Methods in rx.subjects that return BehaviorSubject Modifier and Type Method Description static <T> BehaviorSubject<T>BehaviorSubject. create()Creates aBehaviorSubjectwithout a default item.static <T> BehaviorSubject<T>BehaviorSubject. create(T defaultValue)Creates aBehaviorSubjectthat emits the last item it observed and all subsequent items to eachObserverthat subscribes to it.private static <T> BehaviorSubject<T>BehaviorSubject. create(T defaultValue, boolean hasDefault)
-