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