2 instantiations of VoidAsyncOperationWithData
System.Threading.Channels (2)
System\Threading\Channels\BoundedChannel.cs (2)
307_writerSingleton = new VoidAsyncOperationWithData<T>(runContinuationsAsynchronously: true, pooled: true); 607var writer = new VoidAsyncOperationWithData<T>(runContinuationsAsynchronously: true, cancellationToken);
7 references to VoidAsyncOperationWithData
System.Threading.Channels (7)
System\Threading\Channels\BoundedChannel.cs (7)
29private readonly Deque<VoidAsyncOperationWithData<T>> _blockedWriters = new Deque<VoidAsyncOperationWithData<T>>(); 275VoidAsyncOperationWithData<T> w = parent._blockedWriters.DequeueHead(); 301private readonly VoidAsyncOperationWithData<T> _writerSingleton; 346ChannelUtilities.FailOperations<VoidAsyncOperationWithData<T>, VoidResult>(parent._blockedWriters, ChannelUtilities.CreateInvalidCompletionException(error)); 597VoidAsyncOperationWithData<T> singleton = _writerSingleton; 607var writer = new VoidAsyncOperationWithData<T>(runContinuationsAsynchronously: true, cancellationToken);