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

Unified Diff: CHANGELOG.md

Issue 1149563010: Add new features to package:async. (Closed) Base URL: https://github.com/dart-lang/async@master
Patch Set: Address comments. Created 5 years, 6 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | README.md » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: CHANGELOG.md
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 1333fe37977e1a28428ddbf72de5e4e0f223374e..11d222f7d8e5a9833755f390a564d2aee2e7428c 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,19 @@
+## 1.3.0
+
+- Added `StreamCompleter` class for creating a stream now and providing its
+ events later as another stream.
+
+- Added `StreamQueue` class which allows requesting events from a stream
+ before they are avilable. It is like a `StreamIterator` that can queue
+ requests.
+
+- Added `DelegatingStreamSubscription` which is a simple wrapper around
+ a `StreamSubscription` that forwards all call to the wrapped subscription.
+ It can be extended to wrap extra functionality around a subscription.
+
+- Added `SubscriptionStream` which creates a single-subscription stream
+ from an existing stream subscription.
+
## 1.2.0
- Added a `FutureGroup` class for waiting for a group of futures, potentially of
« no previous file with comments | « no previous file | README.md » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698