2 instantiations of BoundedChannel
System.Threading.Channels (2)
System\Threading\Channels\Channel.cs (2)
41
capacity > 0 ? new
BoundedChannel
<T>(capacity, BoundedChannelFullMode.Wait, runContinuationsAsynchronously: true, itemDropped: null) :
64
options.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>
72
internal readonly
BoundedChannel
<T> _parent;
76
internal BoundedChannelReader(
BoundedChannel
<T> parent)
93
BoundedChannel
<T> parent = _parent;
111
BoundedChannel
<T> parent = _parent;
130
BoundedChannel
<T> parent = _parent;
154
BoundedChannel
<T> parent = _parent;
197
BoundedChannel
<T> parent = _parent;
241
BoundedChannel
<T> parent = _parent;
294
internal readonly
BoundedChannel
<T> _parent;
298
internal BoundedChannelWriter(
BoundedChannel
<T> parent)
307
BoundedChannel
<T> parent = _parent;
368
BoundedChannel
<T> parent = _parent;
474
BoundedChannel
<T> parent = _parent;
525
BoundedChannel
<T> parent = _parent;
688
}, new KeyValuePair<
BoundedChannel
<T>, AsyncOperation>(this, op));