System.Threading.Channels 11.0.0-preview.2.26159.112

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
Npgsql
Npgsql is the open source .NET data provider for PostgreSQL.
11
Microsoft.AspNetCore.SignalR.Client.Core
Client for ASP.NET Core SignalR This package was built from the source code at https://github.com/dotnet/aspnetcore/tree/954f61dd38b33caa2b736c73530bd5a294174437
10
Microsoft.AspNetCore.SignalR.Client.Core
Client for ASP.NET Core SignalR This package was built from the source code at https://github.com/aspnet/AspNetCore/tree/458d97420a173fe87487b58ec4aa47a4c9dc4710
9
Microsoft.AspNetCore.SignalR.Client.Core
Client for ASP.NET Core SignalR This package was built from the source code at https://github.com/aspnet/AspNetCore/tree/fbe05294ac5c88be848b4d57d60cb2657874da9b
9
Microsoft.AspNetCore.SignalR.Client.Core
Client for ASP.NET Core SignalR This package was built from the source code at https://github.com/dotnet/aspnetcore/tree/fc93e595ceffbb1e3e85532bf454e92a6a80dd6b
9
Microsoft.AspNetCore.SignalR.Client.Core
Client for ASP.NET Core SignalR This package was built from the source code at https://github.com/dotnet/aspnetcore/tree/af22effae4069a5dfb9b0735859de48820104f5b
9
Npgsql
Npgsql is the open source .NET data provider for PostgreSQL.
9
Microsoft.AspNetCore.SignalR.Client.Core
Client for ASP.NET Core SignalR This package was built from the source code at https://github.com/dotnet/aspnetcore/tree/b506e2cb7b6c0fe787305f8cfdee046b7b3f9a53
8
Microsoft.AspNetCore.SignalR.Client.Core
Client for ASP.NET Core SignalR
8
Microsoft.AspNetCore.SignalR.Client.Core
Client for ASP.NET Core SignalR This package was built from the source code at https://github.com/dotnet/aspnetcore/tree/c663adee8e64ba5d379fa0edfb8201984a7df7d0
8
Microsoft.AspNetCore.SignalR.Client.Core
Client for ASP.NET Core SignalR This package was built from the source code at https://github.com/dotnet/aspnetcore/tree/7c810658463f35c39c54d5fb8a8dbbfd463bf747
8
Microsoft.AspNetCore.SignalR.Client.Core
Client for ASP.NET Core SignalR This package was built from the source code at https://github.com/dotnet/aspnetcore/tree/1dcf7acfacf0fe154adcc23270cb0da11ff44ace
8
Microsoft.AspNetCore.SignalR.Client.Core
Client for ASP.NET Core SignalR This package was built from the source code at https://github.com/dotnet/aspnetcore/tree/d47e49e9c1e173ac90821f7e89cc38e710274241
8
Microsoft.AspNetCore.SignalR.Client.Core
Client for ASP.NET Core SignalR This package was built from the source code at https://github.com/dotnet/aspnetcore/tree/88ec3bc3f37e76fbcc932a25f9f0c1c29fe2b343
8
Microsoft.AspNetCore.SignalR.Client.Core
Client for ASP.NET Core SignalR This package was built from the source code at https://github.com/dotnet/aspnetcore/tree/2f1db20456007c9515068a35a65afdf99af70bc6
8
Microsoft.AspNetCore.SignalR.Client.Core
Client for ASP.NET Core SignalR This package was built from the source code at https://github.com/aspnet/AspNetCore/tree/c3acdcac86dad91c3d3fbc3b93ecc6b7ba494bdc
8
Microsoft.AspNetCore.SignalR.Client.Core
Client for ASP.NET Core SignalR This package was built from the source code at https://github.com/dotnet/aspnetcore/tree/773e8cc3fbdc2c4ffbd57c1f53f21649ef94c35c
8
Microsoft.AspNetCore.SignalR.Client.Core
Client for ASP.NET Core SignalR This package was built from the source code at https://github.com/dotnet/aspnetcore/tree/8e941eb42f819adb116b881195158b3887a70a1c
8
Microsoft.AspNetCore.SignalR.Client.Core
Client for ASP.NET Core SignalR This package was built from the source code at https://github.com/dotnet/aspnetcore/tree/67acc3d331454956fc06d6de2218a625e3e596f8
8

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

.NET Framework 4.6.2

.NET 10.0

  • No dependencies.

.NET 11.0

  • No dependencies.

.NET Standard 2.0

.NET Standard 2.1

  • No dependencies.

Version Downloads Last updated
11.0.0-preview.2.26159.112 1 03/19/2026
11.0.0-preview.1.26104.118 2 03/06/2026
10.0.5 1 03/19/2026
10.0.4 1 03/19/2026
10.0.3 1 03/09/2026
10.0.2 2 01/16/2026
10.0.1 3 12/15/2025
10.0.0 2 12/15/2025
10.0.0-rc.2.25502.107 3 12/15/2025
10.0.0-rc.1.25451.107 3 12/16/2025
10.0.0-preview.7.25380.108 3 12/15/2025
10.0.0-preview.6.25358.103 3 12/15/2025
10.0.0-preview.5.25277.114 2 06/08/2025
10.0.0-preview.4.25258.110 3 05/23/2025
10.0.0-preview.3.25171.5 3 05/23/2025
10.0.0-preview.2.25163.2 2 05/23/2025
10.0.0-preview.1.25080.5 4 02/26/2025
9.0.14 1 03/19/2026
9.0.13 1 03/09/2026
9.0.12 2 01/16/2026
9.0.11 3 12/15/2025
9.0.10 3 12/15/2025
9.0.9 3 12/15/2025
9.0.8 3 12/15/2025
9.0.7 3 12/15/2025
9.0.6 2 06/17/2025
9.0.5 3 05/22/2025
9.0.4 3 05/22/2025
9.0.3 2 05/22/2025
9.0.2 5 02/26/2025
9.0.1 4 02/26/2025
9.0.0 3 02/26/2025
9.0.0-rc.2.24473.5 3 02/26/2025
9.0.0-rc.1.24431.7 4 02/26/2025
9.0.0-preview.7.24405.7 7 02/26/2025
9.0.0-preview.6.24327.7 4 02/26/2025
9.0.0-preview.5.24306.7 3 02/26/2025
9.0.0-preview.4.24266.19 4 02/26/2025
9.0.0-preview.3.24172.9 3 02/26/2025
9.0.0-preview.2.24128.5 3 02/26/2025
9.0.0-preview.1.24080.9 4 02/26/2025
8.0.0 5 09/13/2024
8.0.0-rc.2.23479.6 3 02/26/2025
8.0.0-rc.1.23419.4 7 02/26/2025
8.0.0-preview.7.23375.6 7 02/26/2025
8.0.0-preview.6.23329.7 7 02/26/2025
8.0.0-preview.5.23280.8 7 02/26/2025
8.0.0-preview.4.23259.5 6 02/26/2025
8.0.0-preview.3.23174.8 7 02/26/2025
8.0.0-preview.2.23128.3 6 02/26/2025
8.0.0-preview.1.23110.8 7 02/26/2025
7.0.0 6 02/26/2025
7.0.0-rc.2.22472.3 7 02/26/2025
7.0.0-rc.1.22426.10 6 02/26/2025
7.0.0-preview.7.22375.6 7 02/26/2025
7.0.0-preview.6.22324.4 7 02/26/2025
7.0.0-preview.5.22301.12 7 02/26/2025
7.0.0-preview.4.22229.4 7 02/26/2025
7.0.0-preview.3.22175.4 6 02/26/2025
7.0.0-preview.2.22152.2 7 02/26/2025
7.0.0-preview.1.22076.8 9 02/26/2025
6.0.0 7 02/26/2025
6.0.0-rc.2.21480.5 7 02/26/2025
6.0.0-rc.1.21451.13 7 02/26/2025
6.0.0-preview.7.21377.19 7 02/26/2025
6.0.0-preview.6.21352.12 6 02/26/2025
6.0.0-preview.5.21301.5 7 02/26/2025
6.0.0-preview.4.21253.7 6 02/26/2025
6.0.0-preview.3.21201.4 7 02/26/2025
6.0.0-preview.2.21154.6 6 02/26/2025
6.0.0-preview.1.21102.12 8 02/26/2025
5.0.0 7 02/26/2025
5.0.0-rc.2.20475.5 7 02/26/2025
5.0.0-rc.1.20451.14 7 02/26/2025
5.0.0-preview.8.20407.11 7 02/26/2025
5.0.0-preview.7.20364.11 8 02/26/2025
5.0.0-preview.6.20305.6 7 02/26/2025
5.0.0-preview.5.20278.1 6 02/26/2025
5.0.0-preview.4.20251.6 7 02/26/2025
5.0.0-preview.3.20214.6 8 02/26/2025
5.0.0-preview.2.20160.6 6 02/26/2025
5.0.0-preview.1.20120.5 7 02/26/2025
4.7.1 7 02/26/2025
4.7.0 7 02/26/2025
4.7.0-preview3.19551.4 8 02/26/2025
4.7.0-preview2.19523.17 8 02/26/2025
4.7.0-preview1.19504.10 8 02/26/2025
4.6.0 6 02/26/2025
4.6.0-rc1.19456.4 7 02/26/2025
4.6.0-preview9.19421.4 8 02/26/2025
4.6.0-preview9.19416.11 7 02/26/2025
4.6.0-preview8.19405.3 7 02/26/2025
4.6.0-preview7.19362.9 7 02/26/2025
4.6.0-preview6.19303.8 8 02/26/2025
4.6.0-preview6.19264.9 7 02/26/2025
4.6.0-preview5.19224.8 6 02/26/2025
4.6.0-preview4.19212.13 7 02/26/2025
4.6.0-preview3.19128.7 6 02/26/2025
4.6.0-preview.19073.11 6 02/26/2025
4.6.0-preview.18571.3 7 02/26/2025
4.5.0 8 02/26/2025
4.5.0-rc1 7 02/26/2025
4.5.0-preview2-26406-04 7 02/26/2025
4.5.0-preview1-26216-02 6 02/26/2025