2 instantiations of UnboundedChannel
System.Threading.Channels (2)
System\Threading\Channels\Channel.cs (2)
12
new
UnboundedChannel
<T>(runContinuationsAsynchronously: true);
28
return new
UnboundedChannel
<T>(!options.AllowSynchronousContinuations);
11 references to UnboundedChannel
System.Threading.Channels (11)
System\Threading\Channels\UnboundedChannel.cs (11)
49
internal readonly
UnboundedChannel
<T> _parent;
53
internal UnboundedChannelReader(
UnboundedChannel
<T> parent)
76
UnboundedChannel
<T> parent = _parent;
111
UnboundedChannel
<T> parent = _parent;
127
private static void CompleteIfDone(
UnboundedChannel
<T> parent)
148
UnboundedChannel
<T> parent = _parent;
185
internal readonly
UnboundedChannel
<T> _parent;
186
internal UnboundedChannelWriter(
UnboundedChannel
<T> parent) => _parent = parent;
190
UnboundedChannel
<T> parent = _parent;
240
UnboundedChannel
<T> parent = _parent;
327
}, new KeyValuePair<
UnboundedChannel
<T>, AsyncOperation>(this, op));