Package | Description |
---|---|
rx.subjects |
Classes extending the Observable base reactive class and implementing
the Observer interface at the same time (aka hot Observables).
|
Modifier and Type | Method and Description |
---|---|
static <T> BehaviorSubject<T> |
BehaviorSubject.create()
Creates a
BehaviorSubject without a default item. |
static <T> BehaviorSubject<T> |
BehaviorSubject.create(T defaultValue)
Creates a
BehaviorSubject that emits the last item it observed and all subsequent items to each
Observer that subscribes to it. |
Copyright © 2019. All rights reserved.