Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(5)

Side by Side Diff: CHANGELOG.md

Issue 1566603002: Add a StreamSinkTransformer class. (Closed) Base URL: git@github.com:dart-lang/async.git@master
Patch Set: Code review changes Created 4 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | lib/async.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 ## 1.6.0 1 ## 1.6.0
2 2
3 - Added `CancelableOperation.valueOrCancellation()`, which allows users to be 3 - Added `CancelableOperation.valueOrCancellation()`, which allows users to be
4 notified when an operation is canceled elsewhere. 4 notified when an operation is canceled elsewhere.
5 5
6 - Added `StreamSinkTransformer` which transforms events before they're passed to
7 a `StreamSink`, similarly to how `StreamTransformer` transforms events after
8 they're emitted by a stream.
9
6 ## 1.5.0 10 ## 1.5.0
7 11
8 - Added `LazyStream`, which forwards to the return value of a callback that's 12 - Added `LazyStream`, which forwards to the return value of a callback that's
9 only called when the stream is listened to. 13 only called when the stream is listened to.
10 14
11 ## 1.4.0 15 ## 1.4.0
12 16
13 - Added `AsyncMemoizer.future`, which allows the result to be accessed before 17 - Added `AsyncMemoizer.future`, which allows the result to be accessed before
14 `runOnce()` is called. 18 `runOnce()` is called.
15 19
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
55 - Added a `StreamGroup` class for merging the events of a group of streams, 59 - Added a `StreamGroup` class for merging the events of a group of streams,
56 potentially of unknown size. 60 potentially of unknown size.
57 61
58 ## 1.1.1 62 ## 1.1.1
59 63
60 - Updated SDK version constraint to at least 1.9.0. 64 - Updated SDK version constraint to at least 1.9.0.
61 65
62 ## 1.1.0 66 ## 1.1.0
63 67
64 - ChangeLog starts here. 68 - ChangeLog starts here.
OLDNEW
« no previous file with comments | « no previous file | lib/async.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698