stream_store 0.1.0
stream_store: ^0.1.0 copied to clipboard
A Redux-style Store implemented using core Dart Stream primitives
Changelog #
0.1.0 #
- Breaking changes: Remove state transformers. You an just transform the
Store'sStream<State>however you like. - Only allow the use of
Effectfor side-effects instead of transformers.Effects cannot swallow actions that areadded to the Stream, and work with both aStream<Action>and aStream<State>. - Migrate
LoggingTransformertoLoggingEffect. Improve functionality.
0.0.2 #
- Move to github
- Bump Rx
0.0.1 #
- Initial version with simple Stream-based API