System.Threading.Channels 8.0.0

The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org. Prefix Reserved
There is a newer prerelease version of this package available.
See the version list below for details.
dotnet add package System.Threading.Channels --version 8.0.0
NuGet\Install-Package System.Threading.Channels -Version 8.0.0
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="System.Threading.Channels" Version="8.0.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add System.Threading.Channels --version 8.0.0
#r "nuget: System.Threading.Channels, 8.0.0"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install System.Threading.Channels as a Cake Addin
#addin nuget:?package=System.Threading.Channels&version=8.0.0

// Install System.Threading.Channels as a Cake Tool
#tool nuget:?package=System.Threading.Channels&version=8.0.0

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.

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 is compatible.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 is compatible.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 is compatible.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 is compatible. 
.NET Framework net461 was computed.  net462 is compatible.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (505)

Showing the top 5 NuGet packages that depend on System.Threading.Channels:

Package Downloads
StackExchange.Redis The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

High performance Redis client, incorporating both synchronous and asynchronous usage.

Npgsql The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

Npgsql is the open source .NET data provider for PostgreSQL.

Serilog.Sinks.PeriodicBatching The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

Buffer batches of log events to be flushed asynchronously.

Microsoft.CodeAnalysis.Workspaces.Common The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

A shared package used by the .NET Compiler Platform ("Roslyn") including support for analyzing projects and solutions. Do not install this package manually, it will be added as a prerequisite by other packages that require it. More details at https://aka.ms/roslyn-packages This package was built from the source at https://github.com/dotnet/roslyn/commit/fa72fa61b0d822ea8a3fbeb96f668340419ab5cd.

RabbitMQ.Client

The RabbitMQ .NET client is the official client library for C# (and, implicitly, other .NET languages)

GitHub repositories (102)

Showing the top 5 popular GitHub repositories that depend on System.Threading.Channels:

Repository Stars
dotnet/roslyn
The Roslyn .NET compiler provides C# and Visual Basic languages with rich code analysis APIs.
OpenRA/OpenRA
Open Source real-time strategy game engine for early Westwood games such as Command & Conquer: Red Alert written in C# using SDL and OpenGL. Runs on Windows, Linux, *BSD and Mac OS X.
SignalR/SignalR
Incredibly simple real-time web for .NET
dotnet/machinelearning
ML.NET is an open source and cross-platform machine learning framework for .NET.
JeffreySu/WeiXinMPSDK
微信全平台 SDK Senparc.Weixin for C#,支持 .NET Framework 及 .NET Core、.NET 6.0、.NET 8.0。已支持微信公众号、小程序、小游戏、微信支付、企业微信/企业号、开放平台、JSSDK、微信周边等全平台。 WeChat SDK for C#.
Version Downloads Last updated
9.0.0-preview.2.24128.5 458 3/12/2024
9.0.0-preview.1.24080.9 1,512 2/13/2024
8.0.0 3,461,081 11/14/2023
8.0.0-rc.2.23479.6 245,256 10/10/2023
8.0.0-rc.1.23419.4 25,375 9/12/2023
8.0.0-preview.7.23375.6 15,633 8/8/2023
8.0.0-preview.6.23329.7 9,598 7/11/2023
8.0.0-preview.5.23280.8 5,060 6/13/2023
8.0.0-preview.4.23259.5 9,244 5/16/2023
8.0.0-preview.3.23174.8 13,028 4/11/2023
8.0.0-preview.2.23128.3 12,015 3/14/2023
8.0.0-preview.1.23110.8 7,474 2/21/2023
7.0.0 31,893,800 11/7/2022
7.0.0-rc.2.22472.3 9,460 10/11/2022
7.0.0-rc.1.22426.10 8,233 9/14/2022
7.0.0-preview.7.22375.6 11,125 8/9/2022
7.0.0-preview.6.22324.4 5,261 7/12/2022
7.0.0-preview.5.22301.12 3,586 6/14/2022
7.0.0-preview.4.22229.4 7,674 5/10/2022
7.0.0-preview.3.22175.4 4,550 4/13/2022
7.0.0-preview.2.22152.2 42,736 3/14/2022
7.0.0-preview.1.22076.8 2,135 2/17/2022
6.0.2-mauipre.1.22102.15 1,637 2/15/2022
6.0.2-mauipre.1.22054.8 2,020 1/19/2022
6.0.0 63,530,677 11/8/2021
6.0.0-rc.2.21480.5 14,445 10/12/2021
6.0.0-rc.1.21451.13 15,024 9/14/2021
6.0.0-preview.7.21377.19 27,485 8/10/2021
6.0.0-preview.6.21352.12 7,101 7/14/2021
6.0.0-preview.5.21301.5 4,216 6/15/2021
6.0.0-preview.4.21253.7 7,605 5/24/2021
6.0.0-preview.3.21201.4 8,899 4/8/2021
6.0.0-preview.2.21154.6 34,012 3/11/2021
6.0.0-preview.1.21102.12 15,609 2/12/2021
5.0.0 46,390,709 11/9/2020
5.0.0-rc.2.20475.5 12,987 10/13/2020
5.0.0-rc.1.20451.14 7,610 9/14/2020
5.0.0-preview.8.20407.11 13,573 8/25/2020
5.0.0-preview.7.20364.11 9,044 7/21/2020
5.0.0-preview.6.20305.6 2,902 6/25/2020
5.0.0-preview.5.20278.1 2,766 6/10/2020
5.0.0-preview.4.20251.6 10,724 5/18/2020
5.0.0-preview.3.20214.6 11,178 4/23/2020
5.0.0-preview.2.20160.6 11,671 4/2/2020
5.0.0-preview.1.20120.5 15,647 3/16/2020
4.7.1 162,141,030 5/12/2020
4.7.0 45,188,919 12/3/2019
4.7.0-preview3.19551.4 30,465 11/13/2019
4.7.0-preview2.19523.17 2,718 11/1/2019
4.7.0-preview1.19504.10 19,589 10/15/2019
4.6.0 35,949,690 9/23/2019
4.6.0-rc1.19456.4 8,405 9/16/2019
4.6.0-preview9.19421.4 9,366 9/4/2019
4.6.0-preview9.19416.11 838 9/4/2019
4.6.0-preview8.19405.3 23,797 8/13/2019
4.6.0-preview7.19362.9 10,653 7/23/2019
4.6.0-preview6.19303.8 12,191 6/12/2019
4.6.0-preview6.19264.9 2,232 9/4/2019
4.6.0-preview5.19224.8 139,094 5/6/2019
4.6.0-preview4.19212.13 8,655 4/18/2019
4.6.0-preview3.19128.7 8,892 3/6/2019
4.6.0-preview.19073.11 3,584 1/29/2019
4.6.0-preview.18571.3 55,272 12/3/2018
4.5.0 116,751,800 5/29/2018
4.5.0-rc1 74,705 5/6/2018
4.5.0-preview2-26406-04 80,298 4/10/2018
4.5.0-preview1-26216-02 120,815 2/26/2018