1 type derived from AsyncBatchingWorkQueue
Microsoft.CodeAnalysis.Razor.Workspaces (1)
Utilities\AsyncBatchingWorkQueue.cs (1)
20CancellationToken cancellationToken) : AsyncBatchingWorkQueue<VoidResult>(delay, Convert(processBatchAsync), EqualityComparer<VoidResult>.Default, cancellationToken)
3 instantiations of AsyncBatchingWorkQueue
Microsoft.CodeAnalysis.Razor.Workspaces.UnitTests (2)
Utilities\AsyncBatchingWorkQueueTest.cs (2)
20var workQueue = new AsyncBatchingWorkQueue<int>( 51var workQueue = new AsyncBatchingWorkQueue<int>(
Microsoft.VisualStudio.LanguageServices.Razor (1)
Logging\RazorActivityLog.cs (1)
34_loggingQueue = new AsyncBatchingWorkQueue<(EntryType, string)>(TimeSpan.Zero, ProcessBatchAsync, _disposeTokenSource.Token);
3 references to AsyncBatchingWorkQueue
Microsoft.CodeAnalysis.Razor.Workspaces.UnitTests (2)
Utilities\AsyncBatchingWorkQueueTest.cs (2)
20var workQueue = new AsyncBatchingWorkQueue<int>( 51var workQueue = new AsyncBatchingWorkQueue<int>(
Microsoft.VisualStudio.LanguageServices.Razor (1)
Logging\RazorActivityLog.cs (1)
25private readonly AsyncBatchingWorkQueue<(EntryType, string)> _loggingQueue;