Skip to content

1.0.0-RC11

Pre-release
Pre-release
Compare
Choose a tag to compare
@benjchristensen benjchristensen released this 15 Nov 20:51
· 1343 commits to 1.x since this release

NOTE: A problem with Maven Central syncing prevented this from being published but it is available on JCenter.

This release had to revert changes to scan/reduce in the previous rc.10 release due to issues found with lambdas and overload ambiguity. Mutable reduce at this time is achievable via a modified (breaking change) collect operator like this:

Observable.range(0, 10).collect(() -> new ArrayList<Integer>(), (list, i) -> {
    list.add(i);
}).forEach(System.out::println);

The collect operator now requires the initial value as a Func0<T>.

  • Pull 1882 Remove Unused Scheduler.parallelism
  • Pull 1884 Fix Scan/Reduce/Collect Factory Ambiguity
  • Pull 1866 Fix memory leak in bounded ReplaySubject due to retaining the node index

Artifacts: Maven Central