1 type derived from AsyncBatchingWorkQueue
Microsoft.CodeAnalysis.Workspaces (1)
Shared\Utilities\AsyncBatchingWorkQueue`1.cs (1)
15internal class AsyncBatchingWorkQueue<TItem> : AsyncBatchingWorkQueue<TItem, VoidResult>
3 instantiations of AsyncBatchingWorkQueue
Microsoft.CodeAnalysis.EditorFeatures (1)
NavigationBar\NavigationBarController.cs (1)
96_computeModelQueue = new AsyncBatchingWorkQueue<bool, NavigationBarModel?>(
Microsoft.VisualStudio.LanguageServices (2)
DocumentOutline\DocumentOutlineControl.xaml.cs (2)
103_computeDataModelQueue = new AsyncBatchingWorkQueue<bool, DocumentSymbolDataModel?>( 110_filterAndSortDataModelQueue = new AsyncBatchingWorkQueue<bool, DocumentSymbolDataModel?>(
5 references to AsyncBatchingWorkQueue
Microsoft.CodeAnalysis.EditorFeatures (1)
NavigationBar\NavigationBarController.cs (1)
67private readonly AsyncBatchingWorkQueue<bool, NavigationBarModel?> _computeModelQueue;
Microsoft.CodeAnalysis.Workspaces (2)
Shared\Utilities\AsyncBatchingWorkQueue`0.cs (1)
14/// <inheritdoc cref="AsyncBatchingWorkQueue{TItem, TResult}"/>
Shared\Utilities\AsyncBatchingWorkQueue`1.cs (1)
14/// <inheritdoc cref="AsyncBatchingWorkQueue{TItem, TResult}"/>
Microsoft.VisualStudio.LanguageServices (2)
DocumentOutline\DocumentOutlineControl.xaml.cs (2)
68private readonly AsyncBatchingWorkQueue<bool, DocumentSymbolDataModel?> _computeDataModelQueue; 73private readonly AsyncBatchingWorkQueue<bool, DocumentSymbolDataModel?> _filterAndSortDataModelQueue;