OLD | NEW |
| 1 ## 1.3.0 |
| 2 |
| 3 - Added `StreamCompleter` class for creating a stream now and providing its |
| 4 events later as another stream. |
| 5 |
| 6 - Added `StreamQueue` class which allows requesting events from a stream |
| 7 before they are avilable. It is like a `StreamIterator` that can queue |
| 8 requests. |
| 9 |
| 10 - Added `DelegatingStreamSubscription` which is a simple wrapper around |
| 11 a `StreamSubscription` that forwards all call to the wrapped subscription. |
| 12 It can be extended to wrap extra functionality around a subscription. |
| 13 |
| 14 - Added `SubscriptionStream` which creates a single-subscription stream |
| 15 from an existing stream subscription. |
| 16 |
1 ## 1.2.0 | 17 ## 1.2.0 |
2 | 18 |
3 - Added a `FutureGroup` class for waiting for a group of futures, potentially of | 19 - Added a `FutureGroup` class for waiting for a group of futures, potentially of |
4 unknown size, to complete. | 20 unknown size, to complete. |
5 | 21 |
6 - Added a `StreamGroup` class for merging the events of a group of streams, | 22 - Added a `StreamGroup` class for merging the events of a group of streams, |
7 potentially of unknown size. | 23 potentially of unknown size. |
8 | 24 |
9 ## 1.1.1 | 25 ## 1.1.1 |
10 | 26 |
11 - Updated SDK version constraint to at least 1.9.0. | 27 - Updated SDK version constraint to at least 1.9.0. |
12 | 28 |
13 ## 1.1.0 | 29 ## 1.1.0 |
14 | 30 |
15 - ChangeLog starts here. | 31 - ChangeLog starts here. |
OLD | NEW |