Reakt 1.0.0.RELEASE
·
73 commits
to master
since this release
- Added
Reactor
which enablesReplayPromises
, and is heavily based on the QBitReactor
. - Added
Promises.all
andPromises.any
support. - Changed methods
reply
andfail
toresolve
andreject
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 namereply
as an alias forresolve
because it fits service callbacks better. - Added support for
thenMap
and whenwhenComplete
. thenMap examples - We also added
Breaker
which is like aRef
but used for managing services that might go down. Breaker is short forCircuitBreaker
. - Wrote more documentation.