You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Better support for ObservableList changes:
* Add ListChange, TransientListChange and MaterializedListChange interfaces.
These provide a simpler model for list changes than
javafx.collections.ListChangeListener.Change.
* Expose ListChangeAccumulator.
* Add EventStreams.simpleChangesOf(ObservableList) factory method.
Print errors to stderr if no handler provided.
Rename watch(onEvent, onError) to subscribe(...).
Implement subscribe(onEvent) as
subscribe(onEvent, Throwable::printStackTrace)