7 implementations of ItemsCompletedAsync
Microsoft.CodeAnalysis.EditorFeatures (1)
FindUsages\BufferedFindUsagesContext.cs (1)
137async ValueTask IStreamingProgressTracker.ItemsCompletedAsync(int count, CancellationToken cancellationToken)
Microsoft.CodeAnalysis.Features (1)
ValueTracking\ValueTracker.FindReferencesProgress.cs (1)
28public ValueTask ItemsCompletedAsync(int count, CancellationToken _) => new();
Microsoft.CodeAnalysis.Remote.ServiceHub (3)
Services\FindUsages\RemoteFindUsagesService.cs (1)
92public ValueTask ItemsCompletedAsync(int count, CancellationToken cancellationToken)
Services\SymbolFinder\RemoteSymbolFinderService.cs (2)
193public ValueTask ItemsCompletedAsync(int count, CancellationToken cancellationToken) 245public ValueTask ItemsCompletedAsync(int count, CancellationToken cancellationToken)
Microsoft.CodeAnalysis.Workspaces (2)
FindSymbols\FindReferences\NoOpStreamingFindReferencesProgress.cs (1)
35public ValueTask ItemsCompletedAsync(int count, CancellationToken cancellationToken) => default;
Shared\Utilities\StreamingProgressTracker.cs (1)
25public ValueTask ItemsCompletedAsync(int count, CancellationToken cancellationToken)
8 references to ItemsCompletedAsync
Microsoft.CodeAnalysis.EditorFeatures (2)
FindUsages\BufferedFindUsagesContext.cs (2)
99await presenterContext.ProgressTracker.ItemsCompletedAsync(_state.ItemsCompleted, cancellationToken).ConfigureAwait(false); 142await _streamingPresenterContext.ProgressTracker.ItemsCompletedAsync(count, cancellationToken).ConfigureAwait(false);
Microsoft.CodeAnalysis.Features (2)
FindUsages\IRemoteFindUsagesService.cs (1)
101=> _context.ProgressTracker.ItemsCompletedAsync(count, cancellationToken);
NavigateTo\NavigateToSearcher.cs (1)
129await _progress_doNotAccessDirectly.ItemsCompletedAsync(count, cancellationToken).ConfigureAwait(false);
Microsoft.CodeAnalysis.Workspaces (3)
FindSymbols\SymbolFinder.FindLiteralsServerCallback.cs (1)
22=> progress.ProgressTracker.ItemsCompletedAsync(count, cancellationToken);
FindSymbols\SymbolFinder.FindReferencesServerCallback.cs (1)
32=> progress.ProgressTracker.ItemsCompletedAsync(count, cancellationToken);
Shared\Utilities\IStreamingProgressTrackerExtensions.cs (1)
24=> tracker.ItemsCompletedAsync(1, cancellationToken);
Microsoft.VisualStudio.LanguageServices.CSharp (1)
SemanticSearch\SemanticSearchQueryExecutor.cs (1)
32=> presenterContext.ProgressTracker.ItemsCompletedAsync(itemCount, cancellationToken);