2 instantiations of 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);
15 references to BoundedChannel
System.Threading.Channels (15)
System\Threading\Channels\BoundedChannel.cs (15)
41/// <summary>Initializes the <see cref="BoundedChannel{T}"/>.</summary> 62internal readonly BoundedChannel<T> _parent; 66internal BoundedChannelReader(BoundedChannel<T> parent) 83BoundedChannel<T> parent = _parent; 101BoundedChannel<T> parent = _parent; 120BoundedChannel<T> parent = _parent; 144BoundedChannel<T> parent = _parent; 194BoundedChannel<T> parent = _parent; 245BoundedChannel<T> parent = _parent; 300internal readonly BoundedChannel<T> _parent; 304internal BoundedChannelWriter(BoundedChannel<T> parent) 313BoundedChannel<T> parent = _parent; 359BoundedChannel<T> parent = _parent; 483BoundedChannel<T> parent = _parent; 534BoundedChannel<T> parent = _parent;