10 references to WaitingReadAsyncOperation
System.Threading.Channels (10)
System\Threading\Channels\BoundedChannel.cs (2)
80_waiterSingleton = new WaitingReadAsyncOperation(parent._runContinuationsAsynchronously, pooled: true); 231var waiter = new WaitingReadAsyncOperation(parent._runContinuationsAsynchronously, cancellationToken, cancellationCallback: _parent.CancellationCallbackDelegate);
System\Threading\Channels\RendezvousChannel.cs (2)
70_waiterSingleton = new WaitingReadAsyncOperation(parent._runContinuationsAsynchronously, pooled: true); 216new(parent._runContinuationsAsynchronously, cancellationToken, cancellationCallback: _parent.CancellationCallbackDelegate);
System\Threading\Channels\SingleConsumerUnboundedChannel.cs (2)
63_waiterSingleton = new WaitingReadAsyncOperation(parent._runContinuationsAsynchronously, pooled: true); 186newWaitingReader = new WaitingReadAsyncOperation(_parent._runContinuationsAsynchronously, cancellationToken, cancellationCallback: _parent.CancellationCallbackDelegate);
System\Threading\Channels\UnboundedChannel.cs (2)
57_waiterSingleton = new WaitingReadAsyncOperation(parent._runContinuationsAsynchronously, pooled: true); 171new(parent._runContinuationsAsynchronously, cancellationToken, cancellationCallback: _parent.CancellationCallbackDelegate);
System\Threading\Channels\UnboundedPriorityChannel.cs (2)
64_waiterSingleton = new WaitingReadAsyncOperation(parent._runContinuationsAsynchronously, pooled: true); 176new(parent._runContinuationsAsynchronously, cancellationToken, cancellationCallback: _parent.CancellationCallbackDelegate);