Release 0.1.0
Two new functionalities were added to this release.
JavaFX interval()
Added following factory to emit consecutive Long
values at a set interval on the JavaFX thread. See #34
JavaFxObservable.interval(Duration duration)
Lazy RxJava Bindings
Two more Binding
factories were added to turn an RxJava Observable
into a JavaFX Binding
, and now there is an option to call toLazyBinding()
and not just toBinding()
. This will result in the Binding
implementation delaying subscription to the Observable
until a value is requested from it. #35.
JavaFxSubscriber.toLazyBinding(Observable<T> observable)
JavaFxSubscriber.toLazyBinding(Observable<T> observable, Action1<Throwable> onError)