distinct_value_connectable_stream 1.2.0-beta01 distinct_value_connectable_stream: ^1.2.0-beta01 copied to clipboard
Distinct value connectable stream for RxDart, useful for BLoC pattern
1.2.0-beta01 - Oct 18, 2020 #
-
Introduce
ValueSubject
same asPublishSubject
, with the ability to capture the latest item has been added to the controller. -
Rewrite
DistinctValueConnectableStream
: now will not replay the latest data or error,value
getter instead. This is more consistent toStreamBuilder.initialData
inFlutter
. -
Extension methods
: removedpublishValueSeededDistinct
andshareValueSeededDistinct
. Add topublishValueDistinct
andshareValueDistinct
a required parameterT seedValue
. This is more consistent toStreamBuilder.initialData
inFlutter
. -
Added
DistinctValueStream
: It's alsoValueStream
but emphasizes that two consecutive values are not equal (Equality is determined byequals
method). -
Note that this is a beta release, mainly because the behavior of
DistinctValueConnectableStream
has been adjusted. If all goes well, we'll release a proper 1.2.0 release soon.
1.1.1 - Apr 27, 2020 #
- Minor updates.
1.1.0 - Apr 23, 2020 #
- Breaking change: support for
rxdart
0.24.x.
1.0.3+1 - Jan 14, 2020 #
- Fix analysis
1.0.3 - Dec 15, 2019 #
- Fix README.md
1.0.2 - Dec 15, 2019 #
- Fix README.md
1.0.1 - Dec 15, 2019 #
- Fix README.md
1.0.0 - Dec 15, 2019 #
- Publish