2 instantiations of BoundedChannel
System.Threading.Channels (2)
System\Threading\Channels\Channel.cs (2)
41capacity > 0 ? new BoundedChannel<T>(capacity, BoundedChannelFullMode.Wait, runContinuationsAsynchronously: true, itemDropped: null) : 64options.Capacity > 0 ? new BoundedChannel<T>(options.Capacity, options.FullMode, !options.AllowSynchronousContinuations, itemDropped) :
16 references to BoundedChannel
System.Threading.Channels (16)
System\Threading\Channels\BoundedChannel.cs (16)
49/// <summary>Initializes the <see cref="BoundedChannel{T}"/>.</summary> 72internal readonly BoundedChannel<T> _parent; 76internal BoundedChannelReader(BoundedChannel<T> parent) 93BoundedChannel<T> parent = _parent; 111BoundedChannel<T> parent = _parent; 130BoundedChannel<T> parent = _parent; 154BoundedChannel<T> parent = _parent; 197BoundedChannel<T> parent = _parent; 241BoundedChannel<T> parent = _parent; 294internal readonly BoundedChannel<T> _parent; 298internal BoundedChannelWriter(BoundedChannel<T> parent) 307BoundedChannel<T> parent = _parent; 368BoundedChannel<T> parent = _parent; 474BoundedChannel<T> parent = _parent; 525BoundedChannel<T> parent = _parent; 688}, new KeyValuePair<BoundedChannel<T>, AsyncOperation>(this, op));