2 instantiations of UnboundedChannel
System.Threading.Channels (2)
System\Threading\Channels\Channel.cs (2)
12new UnboundedChannel<T>(runContinuationsAsynchronously: true); 30return new UnboundedChannel<T>(!options.AllowSynchronousContinuations);
10 references to UnboundedChannel
System.Threading.Channels (10)
System\Threading\Channels\UnboundedChannel.cs (10)
44internal readonly UnboundedChannel<T> _parent; 48internal UnboundedChannelReader(UnboundedChannel<T> parent) 71UnboundedChannel<T> parent = _parent; 115UnboundedChannel<T> parent = _parent; 131private static void CompleteIfDone(UnboundedChannel<T> parent) 152UnboundedChannel<T> parent = _parent; 198internal readonly UnboundedChannel<T> _parent; 199internal UnboundedChannelWriter(UnboundedChannel<T> parent) => _parent = parent; 203UnboundedChannel<T> parent = _parent; 243UnboundedChannel<T> parent = _parent;