2 references to BoundedChannel
System.Threading.Channels (2)
System\Threading\Channels\Channel.cs (2)
48
return new
BoundedChannel
<T>(capacity, BoundedChannelFullMode.Wait, runContinuationsAsynchronously: true, itemDropped: null);
72
return new
BoundedChannel
<T>(options.Capacity, options.FullMode, !options.AllowSynchronousContinuations, itemDropped);