From 082406b6f5ee4300dc419de2e67e8bb877a6b5f1 Mon Sep 17 00:00:00 2001 From: Evgenii Zakharov Date: Sat, 25 Apr 2020 17:55:37 +0300 Subject: [PATCH] adjust README, add IAsyncEnumerable and C# version mention for a problem --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 05d020b..8273310 100644 --- a/README.md +++ b/README.md @@ -2594,7 +2594,7 @@ There's a lot to learn about async and await, and it's natural to get a little d | Create a task wrapper for an operation or event | `TaskFactory.FromAsync` or `TaskCompletionSource` | | Support cancellation | `CancellationTokenSource` and `CancellationToken` | | Report progress | `IProgress` and `Progress` | -| Handle streams of data | TPL Dataflow or Reactive Extensions | +| Handle streams of data | TPL Dataflow, Reactive Extensions or Async streams (IAsyncEnumerable, C# 8.0) | | Synchronize access to a shared resource | `SemaphoreSlim` | | Asynchronously initialize a resource | `AsyncLazy` | | Async-ready producer/consumer structures | TPL Dataflow or `AsyncCollection` |