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