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

Unified Diff: packages/async/CHANGELOG.md

Issue 1400473008: Roll Observatory packages and add a roll script (Closed) Base URL: git@github.com:dart-lang/observatory_pub_packages.git@master
Patch Set: Created 5 years, 2 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 | « packages/async/AUTHORS ('k') | packages/async/CONTRIBUTING.md » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: packages/async/CHANGELOG.md
diff --git a/packages/async/CHANGELOG.md b/packages/async/CHANGELOG.md
new file mode 100644
index 0000000000000000000000000000000000000000..39d204b27320a8c29fdaca8577f387732780119b
--- /dev/null
+++ b/packages/async/CHANGELOG.md
@@ -0,0 +1,43 @@
+## 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 `SubscriptionStream` which creates a single-subscription stream
+ from an existing stream subscription.
+
+- Added a `ResultFuture` class for synchronously accessing the result of a
+ wrapped future.
+
+- Added `FutureGroup.onIdle` and `FutureGroup.isIdle`, which provide visibility
+ into whether a group is actively waiting on any futures.
+
+- Add an `AsyncMemoizer` class for running an asynchronous block of code exactly
+ once.
+
+- Added delegating wrapper classes for a number of core async types:
+ `DelegatingFuture`, `DelegatingStreamConsumer`, `DelegatingStreamController`,
+ `DelegatingSink`, `DelegatingEventSink`, `DelegatingStreamSink`, and
+ `DelegatingStreamSubscription`. These are all simple wrappers that forward all
+ calls to the wrapped objects. They can be used to expose only the desired
+ interface for subclasses, or extended to add extra functionality.
+
+## 1.2.0
+
+- Added a `FutureGroup` class for waiting for a group of futures, potentially of
+ unknown size, to complete.
+
+- Added a `StreamGroup` class for merging the events of a group of streams,
+ potentially of unknown size.
+
+## 1.1.1
+
+- Updated SDK version constraint to at least 1.9.0.
+
+## 1.1.0
+
+- ChangeLog starts here.
« no previous file with comments | « packages/async/AUTHORS ('k') | packages/async/CONTRIBUTING.md » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698