10 references to BlockedReadAsyncOperation
System.Threading.Channels (10)
System\Threading\Channels\BoundedChannel.cs (2)
79
_readerSingleton = new
BlockedReadAsyncOperation
<T>(parent._runContinuationsAsynchronously, pooled: true);
184
var reader = new
BlockedReadAsyncOperation
<T>(parent._runContinuationsAsynchronously, cancellationToken, cancellationCallback: _parent.CancellationCallbackDelegate);
System\Threading\Channels\RendezvousChannel.cs (2)
69
_readerSingleton = new
BlockedReadAsyncOperation
<T>(parent._runContinuationsAsynchronously, pooled: true);
160
new
(parent._runContinuationsAsynchronously, cancellationToken, cancellationCallback: _parent.CancellationCallbackDelegate);
System\Threading\Channels\SingleConsumerUnboundedChannel.cs (2)
62
_readerSingleton = new
BlockedReadAsyncOperation
<T>(parent._runContinuationsAsynchronously, pooled: true);
114
newBlockedReader = new
BlockedReadAsyncOperation
<T>(_parent._runContinuationsAsynchronously, cancellationToken, cancellationCallback: _parent.CancellationCallbackDelegate);
System\Threading\Channels\UnboundedChannel.cs (2)
56
_readerSingleton = new
BlockedReadAsyncOperation
<T>(parent._runContinuationsAsynchronously, pooled: true);
103
new
BlockedReadAsyncOperation
<T>(parent._runContinuationsAsynchronously, cancellationToken, cancellationCallback: _parent.CancellationCallbackDelegate);
System\Threading\Channels\UnboundedPriorityChannel.cs (2)
63
_readerSingleton = new
BlockedReadAsyncOperation
<T>(parent._runContinuationsAsynchronously, pooled: true);
104
new
BlockedReadAsyncOperation
<T>(parent._runContinuationsAsynchronously, cancellationToken, cancellationCallback: _parent.CancellationCallbackDelegate);