Skip to content

Releases: TomasMikula/ReactFX

2.0-M5 Release

30 Apr 05:04
Compare
Choose a tag to compare

A bunch of new methods, bug fixes, and Javadoc improvements.

2.0 Milestone 4 Update 1

18 Aug 21:01
Compare
Choose a tag to compare

2.0 Milestone 4

23 Feb 02:39
Compare
Choose a tag to compare

Some fixes and little features, as well as deprecations. Update to address deprecations.

2.0 Milestone 3

13 Feb 03:20
Compare
Choose a tag to compare

2.0 Milestone 2 update 1

09 Feb 02:33
Compare
Choose a tag to compare

This is a small bugfix release for 2.0-M2

2.0 Milestone 2

08 Feb 04:18
Compare
Choose a tag to compare

New in this milestone:

  • Val as a better ObservableValue. It is a unifying concept of ObservableValue, Binding, EasyBind's MonadicObservableValue, InhiBeans' inhibitable ObservableValue, plus adopts the lazy binding known from EventStreams.
  • Var as a better Property.
  • LiveList as a better ObservableList.

Other changes in this milestone:

  • Error-reporting mechanism was removed.
  • InhiBeans deprecated, since all functionality is now contained in Val, Var and LiveList.

There are other smaller additions and changes.

2.0 Milestone 1

14 Dec 00:46
Compare
Choose a tag to compare

This first milestone for 2.0 is about removing stuff and refactoring. It introduces a number of breaking changes:

  • BiEventStream, TriEventStream and EitherEventStream are gone. The necessary code repetition in their implementation is not justified by the little gains in performance. In the future, hopefully, project Valhalla enables more efficient implementation of tuples as value types, getting back the performance benefits of BiEventStream and TriEventStream, without code repetition.
  • Removed the deprecated InterceptableEventStream.
  • The subscriber type is now Subscriber<T> instead of Consumer<T>.

1.4.1 release

04 Dec 20:21
Compare
Choose a tag to compare

New in this minor release:

1.4 release

26 Aug 00:53
Compare
Choose a tag to compare

Improved error-reporting: errors are printed to stderr if no handler provided.

1.3 release

11 Jul 18:42
Compare
Choose a tag to compare

New in this release:

Controlling recursive event emission. Recursive event emission happens when an event causes the stream to emit again. Basically, recursion is disallowed when there is more than one subscriber to the stream, since if the first notified subscriber caused recursive emission, the following subscribers would receive events in reverse order. To allow recursive emission and 2 or more subscribers at the same time, one has to explicitly state how to handle recursive emission, via the onRecurse*() methods.

Suspendable event streams. Interceptable event streams were simplified (mostly implementation-wise) and are now called suspendable event streams. There's a special operator to get each type of suspendable event stream: suppressible, forgetful, pausable, reducible, accumulative, accumulative.

New stream combinators:
suppressWhen, retainLatestWhen, pauseWhen, reduceWhen, accumulateWhen, accumulateWhen,
retainLatestUntilLater, queueUntilLater, reduceUntilLater, accumulateUntilLater, accumulateUntilLater,
queueBetween, reduceBetween, accumulateBetween, accumulateBetween.