Skip to content

v0.82 simple-react

Compare
Choose a tag to compare
@johnmcclean johnmcclean released this 27 Mar 16:59
· 3317 commits to master since this release

New in v0.82

All of the EagerFutureStream methods are asynchronous, but many of them will still wait until all processing of a stage is complete before moving to the next stage. See a list of affecting operators here :-
Alternatives are provided such as limitFutures, skipFutures, sliceFutures, partitionFutures, duplicateFutures, zipFutures, zipFuturesWithIndex etc.

Also new v0.82 is the ability to convert between EagerFutureStream and LazyFutureStream mid-stream and back. So users can switch to LazyFutureStream for the less efficient EagerFutureStream implementations and back again afterwards.

v0.82 also includes some performance / efficiency enhancements such as replace threads with simulated continuations in LazyFutureStream Queue population

Fixes for v0.82

runXXX methods not capturing errors : #19

Adding SimpleReact as a Dependency

Gradle

compile group: 'com.aol.simplereact', name:'simple-react', version:'0.82'

Maven

 <dependency>
   <groupId>com.aol.simplereact</groupId>
     <artifactId>simple-react</artifactId>
      <version>0.82</version>
     <scope>compile</scope>
   </dependency>

Javadoc

http://www.javadoc.io/doc/com.aol.simplereact/simple-react/0.82