OLD | NEW |
1 ## 1.3.0 | 1 ## 1.3.0 |
2 | 2 |
3 - Added `StreamCompleter` class for creating a stream now and providing its | 3 - Added `StreamCompleter` class for creating a stream now and providing its |
4 events later as another stream. | 4 events later as another stream. |
5 | 5 |
6 - Added `StreamQueue` class which allows requesting events from a stream | 6 - Added `StreamQueue` class which allows requesting events from a stream |
7 before they are avilable. It is like a `StreamIterator` that can queue | 7 before they are avilable. It is like a `StreamIterator` that can queue |
8 requests. | 8 requests. |
9 | 9 |
10 - Added `SubscriptionStream` which creates a single-subscription stream | 10 - Added `SubscriptionStream` which creates a single-subscription stream |
11 from an existing stream subscription. | 11 from an existing stream subscription. |
12 | 12 |
| 13 - Added `ForkableStream` which wraps a stream and allows independent forks to be |
| 14 created that emit the same events as the original. |
| 15 |
13 - Added a `ResultFuture` class for synchronously accessing the result of a | 16 - Added a `ResultFuture` class for synchronously accessing the result of a |
14 wrapped future. | 17 wrapped future. |
15 | 18 |
16 - Added `FutureGroup.onIdle` and `FutureGroup.isIdle`, which provide visibility | 19 - Added `FutureGroup.onIdle` and `FutureGroup.isIdle`, which provide visibility |
17 into whether a group is actively waiting on any futures. | 20 into whether a group is actively waiting on any futures. |
18 | 21 |
19 - Add an `AsyncMemoizer` class for running an asynchronous block of code exactly | 22 - Add an `AsyncMemoizer` class for running an asynchronous block of code exactly |
20 once. | 23 once. |
21 | 24 |
22 - Added delegating wrapper classes for a number of core async types: | 25 - Added delegating wrapper classes for a number of core async types: |
(...skipping 11 matching lines...) Expand all Loading... |
34 - Added a `StreamGroup` class for merging the events of a group of streams, | 37 - Added a `StreamGroup` class for merging the events of a group of streams, |
35 potentially of unknown size. | 38 potentially of unknown size. |
36 | 39 |
37 ## 1.1.1 | 40 ## 1.1.1 |
38 | 41 |
39 - Updated SDK version constraint to at least 1.9.0. | 42 - Updated SDK version constraint to at least 1.9.0. |
40 | 43 |
41 ## 1.1.0 | 44 ## 1.1.0 |
42 | 45 |
43 - ChangeLog starts here. | 46 - ChangeLog starts here. |
OLD | NEW |