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