0.25.0-beta2
Pre-release
Pre-release
·
211 commits
to master
since this release
- Internal refactoring Stream Transformers.
- Fixed
RetryStream
example documentation. - Error thrown from
DeferStream
factory will now be caught and converted toStream.error
. doOnError
now have strong type signature:Stream<T> doOnError(void Function(Object, StackTrace) onError)
.- Updated
ForkJoinStream
:- When any Stream emits an error, listening still continues unless
cancelOnError: true
on the downstream. - Pause and resume Streams properly.
- When any Stream emits an error, listening still continues unless
- Added
UsingStream
. - Updated
TimerStream
: Pause and resume Timer when pausing and resuming StreamSubscription.