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

Side by Side Diff: CHANGELOG.md

Issue 2649033006: Add `peek` and `lookAhead` to `StreamQueue`. (Closed)
Patch Set: Created 3 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/src/stream_queue.dart » ('j') | lib/src/stream_queue.dart » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 ## 1.12.0 1 ## 1.12.0
2 2
3 * Add an `AsyncCache` class that caches asynchronous operations for a period of 3 * Add an `AsyncCache` class that caches asynchronous operations for a period of
4 time. 4 time.
5 5
6 * Add `StreamQueue.peek` and `StreamQueue.lookAheead`.
7 These allow users to look at events without consuming them.
nweiz 2017/01/24 22:37:59 I released 1.12 so I could start using it in other
Lasse Reichstein Nielsen 2017/01/25 07:58:03 Done.
8
6 * Add `StreamQueue.startTransaction()` and `StreamQueue.withTransaction()`. 9 * Add `StreamQueue.startTransaction()` and `StreamQueue.withTransaction()`.
7 These allow users to conditionally consume events based on their values. 10 These allow users to conditionally consume events based on their values.
8 11
9 * Add `StreamQueue.cancelable()`, which allows users to easily make a 12 * Add `StreamQueue.cancelable()`, which allows users to easily make a
10 `CancelableOperation` that can be canceled without affecting the queue. 13 `CancelableOperation` that can be canceled without affecting the queue.
11 14
12 * Add a `subscriptionTransformer()` function to create `StreamTransformer`s that 15 * Add a `subscriptionTransformer()` function to create `StreamTransformer`s that
13 modify the behavior of subscriptions to a stream. 16 modify the behavior of subscriptions to a stream.
14 17
15 ## 1.11.3 18 ## 1.11.3
(...skipping 134 matching lines...) Expand 10 before | Expand all | Expand 10 after
150 - Added a `StreamSplitter` class for splitting a stream into multiple new 153 - Added a `StreamSplitter` class for splitting a stream into multiple new
151 streams. 154 streams.
152 155
153 ## 1.1.1 156 ## 1.1.1
154 157
155 - Updated SDK version constraint to at least 1.9.0. 158 - Updated SDK version constraint to at least 1.9.0.
156 159
157 ## 1.1.0 160 ## 1.1.0
158 161
159 - ChangeLog starts here. 162 - ChangeLog starts here.
OLDNEW
« no previous file with comments | « no previous file | lib/src/stream_queue.dart » ('j') | lib/src/stream_queue.dart » ('J')

Powered by Google App Engine
This is Rietveld 408576698