Skip to content

2.0.0

Compare
Choose a tag to compare
@github-actions github-actions released this 20 Nov 09:20
· 688 commits to master since this release

Redesigned and simplified the public-facing API to enable reuse of java.util.stream.Collector instances for providing custom reduction strategies which enabled reduction of the public API from 13 methods to just 4:

  • CompletableFuture<List<T>> parallel(Function, Collector, Executor, parallelism)

  • CompletableFuture<Stream<T>> parallel(Function, Executor, parallelism)

  • Stream<T> parallelToStream(Function, Executor, parallelism)

  • Stream<T> parallelToOrderedStream(Function, Executor, parallelism)