c# System.Threading.Channels.Channel<T>的使用
2020-11-27 01:55
标签:message reader writer 个数 public rgs try oid ons 先贴一个代码 Channel 通道的意思 c# System.Threading.Channels.Channel 标签:message reader writer 个数 public rgs try oid ons 原文地址:https://www.cnblogs.com/microestc/p/11929891.htmlclass Program
{
static void Main(string[] args)
{
var channels = Channel.CreateBounded
Writer写入对象后会保存起来,等到reader 读取后就消费掉, 写入读取按照队列的形式,即 先写的先读取
CreateBounded 可以做一些设置,设置大小个数 ,如上述 Channel.CreateBounded
CreateUnbounded 无限制 Channel.CreateUnbounded待续
文章标题:c# System.Threading.Channels.Channel<T>的使用
文章链接:http://soscw.com/index.php/essay/22775.html