Skip to content

Reakt 1.0.0.RELEASE

Compare
Choose a tag to compare
@RichardHightower RichardHightower released this 10 Apr 23:25
· 73 commits to master since this release
  • Added Reactor which enables ReplayPromises, and is heavily based on the QBit Reactor.
  • Added Promises.all and Promises.any support.
  • Changed methods reply and fail to resolve and reject in Callback and Promise to match the JS Promises API so someone form JS or ES6 could more readily reason on them. We kept the name reply as an alias for resolve because it fits service callbacks better.
  • Added support for thenMap and when whenComplete. thenMap examples
  • We also added Breaker which is like a Ref but used for managing services that might go down. Breaker is short for CircuitBreaker.
  • Wrote more documentation.