4 references to CancellationCallbackDelegate
System.Threading.Channels (4)
System\Threading\Channels\BoundedChannel.cs (4)
184
var reader = new BlockedReadAsyncOperation<T>(parent._runContinuationsAsynchronously, cancellationToken, cancellationCallback: _parent.
CancellationCallbackDelegate
);
231
var waiter = new WaitingReadAsyncOperation(parent._runContinuationsAsynchronously, cancellationToken, cancellationCallback: _parent.
CancellationCallbackDelegate
);
509
var waiter = new WaitingWriteAsyncOperation(runContinuationsAsynchronously: true, cancellationToken, cancellationCallback: _parent.
CancellationCallbackDelegate
);
586
var writer = new BlockedWriteAsyncOperation<T>(runContinuationsAsynchronously: true, cancellationToken, cancellationCallback: _parent.
CancellationCallbackDelegate
)