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