Skip to content

0.27.2

Compare
Choose a tag to compare
@hoc081098 hoc081098 released this 03 Sep 21:25
· 104 commits to master since this release
5b1c702

https://pub.dev/packages/rxdart/versions/0.27.2

Bug fixes

  • onErrorReturnWith now does not drop the remaining data events after the first error.
  • Disallow changing handlers of ConnectableStreamSubscription.

Features

  • Add delayWhen operator.
  • Add optional parameter maxConcurrent to flatMap.
  • groupBy
    • Rename GroupByStream to GroupedStream.
    • Add optional parameter durationSelector, which used to determine how long each group should exist.
  • ignoreElements
    • Remove @deprecated annotation (ignoreElements should not be marked as deprecated).
    • Change return type to Stream<Never>.

Documentation

Code refactoring

  • Refactoring Stream Transformers, using Stream.multi internally.