System.Threading.Channels 10.0.0-preview.2.25163.2

About

The System.Threading.Channels library provides types for passing data asynchronously between producers and consumers.

Key Features

  • Abstractions representing channels for one or more producers to publish data to one or more consumers
  • APIs focused on asynchronous production and consumption of data
  • Factory methods for producing multiple kinds of channels

How to Use

using System;
using System.Threading.Channels;
using System.Threading.Tasks;

Channel<int> channel = Channel.CreateUnbounded<int>();

Task producer = Task.Run(async () =>
{
    int i = 0;
    while (true)
    {
        channel.Writer.TryWrite(i++);
        await Task.Delay(TimeSpan.FromSeconds(1));
    }
});

Task consumer = Task.Run(async () =>
{
    await foreach (int value in channel.Reader.ReadAllAsync())
    {
        Console.WriteLine(value);
    }
});

await Task.WhenAll(producer, consumer);

Main Types

The main types provided by this library are:

  • System.Threading.Channel<T>
  • System.Threading.Channel

Additional Documentation

https://www.nuget.org/packages/System.Threading.Tasks.Dataflow/

Feedback & Contributing

System.Threading.Channels is released as open source under the MIT license. Bug reports and contributions are welcome at the GitHub repository.

Showing the top 20 packages that depend on System.Threading.Channels.

Packages Downloads
StackExchange.Redis
High performance Redis client, incorporating both synchronous and asynchronous usage.
94
Microsoft.Azure.Functions.Worker.Grpc
This library provides gRPC support for Azure Functions .NET Worker communication with the Azure Functions Host.
63
Microsoft.AspNetCore.App
Provides a default set of APIs for building an ASP.NET Core application. This package requires the ASP.NET Core runtime. This runtime is installed by the .NET Core SDK, or can be acquired separately using installers available at https://aka.ms/dotnet-download.
57
RabbitMQ.Client
The RabbitMQ .NET client is the official client library for C# (and, implicitly, other .NET languages)
56
Npgsql
Npgsql is the open source .NET data provider for PostgreSQL.
55
Npgsql
Npgsql is the open source .NET data provider for PostgreSQL.
52
StackExchange.Redis
High performance Redis client, incorporating both synchronous and asynchronous usage.
52
StackExchange.Redis
High performance Redis client, incorporating both synchronous and asynchronous usage.
51
RabbitMQ.Client
The RabbitMQ .NET client is the official client library for C# (and, implicitly, other .NET languages)
48
Npgsql
Npgsql is the open source .NET data provider for PostgreSQL.
48
RabbitMQ.Client
The RabbitMQ .NET client is the official client library for C# (and, implicitly, other .NET languages)
44
RabbitMQ.Client
The RabbitMQ .NET client is the official client library for C# (and, implicitly, other .NET languages)
41
Npgsql
Npgsql is the open source .NET data provider for PostgreSQL.
40
StackExchange.Redis
High performance Redis client, incorporating both synchronous and asynchronous usage.
40
StackExchange.Redis
High performance Redis client, incorporating both synchronous and asynchronous usage.
39
Microsoft.AspNetCore.App
Provides a default set of APIs for building an ASP.NET Core application. This package requires the ASP.NET Core runtime. This runtime is installed by the .NET Core SDK, or can be acquired separately using installers available at https://aka.ms/dotnet-download.
39
Npgsql
Npgsql is the open source .NET data provider for PostgreSQL.
39
RabbitMQ.Client
The RabbitMQ .NET client is the official client library for C# (and, implicitly, other .NET languages)
38
StackExchange.Redis
High performance Redis client, incorporating both synchronous and asynchronous usage.
38

https://go.microsoft.com/fwlink/?LinkID=799421

.NET Framework 4.6.2

.NET 8.0

  • No dependencies.

.NET 9.0

  • No dependencies.

.NET 10.0

  • No dependencies.

.NET Standard 2.0

.NET Standard 2.1

  • No dependencies.

Version Downloads Last updated
10.0.0-preview.2.25163.2 5 03/19/2025
10.0.0-preview.1.25080.5 5 03/07/2025
9.0.3 7 03/15/2025
9.0.2 8 02/16/2025
9.0.1 9 01/19/2025
9.0.0 11 12/09/2024
9.0.0-rc.2.24473.5 15 10/10/2024
9.0.0-rc.1.24431.7 13 09/18/2024
9.0.0-preview.7.24405.7 16 11/18/2024
9.0.0-preview.6.24327.7 19 07/14/2024
9.0.0-preview.5.24306.7 14 06/27/2024
9.0.0-preview.4.24266.19 18 05/24/2024
9.0.0-preview.3.24172.9 16 04/14/2024
9.0.0-preview.2.24128.5 16 03/31/2024
9.0.0-preview.1.24080.9 16 02/20/2024
8.0.0 16 01/17/2024
8.0.0-rc.2.23479.6 23 10/27/2023
8.0.0-rc.1.23419.4 20 01/17/2024
8.0.0-preview.7.23375.6 25 10/28/2023
8.0.0-preview.6.23329.7 28 08/27/2023
8.0.0-preview.5.23280.8 24 09/20/2023
8.0.0-preview.4.23259.5 30 07/17/2023
8.0.0-preview.3.23174.8 45 04/26/2023
8.0.0-preview.2.23128.3 43 04/04/2023
8.0.0-preview.1.23110.8 27 04/01/2023
7.0.0 65 04/13/2023
7.0.0-rc.2.22472.3 60 04/06/2023
7.0.0-rc.1.22426.10 29 03/26/2023
7.0.0-preview.7.22375.6 50 04/02/2023
7.0.0-preview.6.22324.4 34 04/06/2023
7.0.0-preview.5.22301.12 49 04/01/2023
7.0.0-preview.4.22229.4 18 03/29/2023
7.0.0-preview.3.22175.4 56 03/26/2023
7.0.0-preview.2.22152.2 36 04/09/2023
7.0.0-preview.1.22076.8 36 04/08/2023
6.0.2-mauipre.1.22102.15 38 04/16/2023
6.0.2-mauipre.1.22054.8 16 10/18/2023
6.0.0 34 04/01/2023
6.0.0-rc.2.21480.5 51 04/26/2023
6.0.0-rc.1.21451.13 48 04/09/2023
6.0.0-preview.7.21377.19 52 03/26/2023
6.0.0-preview.6.21352.12 37 04/08/2023
6.0.0-preview.5.21301.5 42 04/05/2023
6.0.0-preview.4.21253.7 44 04/04/2023
6.0.0-preview.3.21201.4 54 04/02/2023
6.0.0-preview.2.21154.6 38 04/10/2023
6.0.0-preview.1.21102.12 41 04/09/2023
5.0.0 140 01/15/2021
5.0.0-rc.2.20475.5 52 04/01/2023
5.0.0-rc.1.20451.14 30 03/30/2023
5.0.0-preview.8.20407.11 52 04/27/2023
5.0.0-preview.7.20364.11 28 04/09/2023
5.0.0-preview.6.20305.6 30 04/13/2023
5.0.0-preview.5.20278.1 43 04/13/2023
5.0.0-preview.4.20251.6 19 04/02/2023
5.0.0-preview.3.20214.6 57 03/29/2023
5.0.0-preview.2.20160.6 28 04/18/2023
5.0.0-preview.1.20120.5 25 04/07/2023
4.7.1 96 06/13/2020
4.7.0 52 01/13/2021
4.7.0-preview3.19551.4 24 07/19/2023
4.7.0-preview2.19523.17 37 04/11/2023
4.7.0-preview1.19504.10 58 04/10/2023
4.6.0 47 04/11/2023
4.6.0-rc1.19456.4 24 03/26/2023
4.6.0-preview9.19421.4 23 04/06/2023
4.6.0-preview9.19416.11 46 04/01/2023
4.6.0-preview8.19405.3 39 04/03/2023
4.6.0-preview7.19362.9 41 04/08/2023
4.6.0-preview6.19303.8 46 04/03/2023
4.6.0-preview6.19264.9 43 06/03/2023
4.6.0-preview5.19224.8 41 03/28/2023
4.6.0-preview4.19212.13 44 03/28/2023
4.6.0-preview3.19128.7 41 04/05/2023
4.6.0-preview.19073.11 35 04/06/2023
4.6.0-preview.18571.3 33 04/17/2023
4.5.0 70 07/01/2020
4.5.0-rc1 58 04/02/2023
4.5.0-preview2-26406-04 26 04/01/2023
4.5.0-preview1-26216-02 40 03/28/2023