Skip to content

Release 0.1.0

Compare
Choose a tag to compare
@thomasnield thomasnield released this 30 Jun 00:51
· 30 commits to 0.x since this release

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)