7 implementations of ItemsCompletedAsync
Microsoft.CodeAnalysis.EditorFeatures (1)
FindUsages\BufferedFindUsagesContext.cs (1)
139async ValueTask IStreamingProgressTracker.ItemsCompletedAsync(int count, CancellationToken cancellationToken)
Microsoft.CodeAnalysis.Features (1)
ValueTracking\ValueTracker.FindReferencesProgress.cs (1)
29public 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)
195public ValueTask ItemsCompletedAsync(int count, CancellationToken cancellationToken) 248public ValueTask ItemsCompletedAsync(int count, CancellationToken cancellationToken)
Microsoft.CodeAnalysis.Workspaces (2)
FindSymbols\FindReferences\NoOpStreamingFindReferencesProgress.cs (1)
36public ValueTask ItemsCompletedAsync(int count, CancellationToken cancellationToken) => default;
Shared\Utilities\StreamingProgressTracker.cs (1)
30public ValueTask ItemsCompletedAsync(int count, CancellationToken cancellationToken)
7 references to ItemsCompletedAsync
Microsoft.CodeAnalysis.EditorFeatures (2)
FindUsages\BufferedFindUsagesContext.cs (2)
103await presenterContext.ProgressTracker.ItemsCompletedAsync(_state.ItemsCompleted, cancellationToken).ConfigureAwait(false); 144await _streamingPresenterContext.ProgressTracker.ItemsCompletedAsync(count, cancellationToken).ConfigureAwait(false);
Microsoft.CodeAnalysis.Features (2)
FindUsages\IRemoteFindUsagesService.cs (1)
106=> _context.ProgressTracker.ItemsCompletedAsync(count, cancellationToken);
NavigateTo\NavigateToSearcher.cs (1)
98await _progress_doNotAccessDirectly.ItemsCompletedAsync(count, cancellationToken).ConfigureAwait(false);
Microsoft.CodeAnalysis.Workspaces (3)
FindSymbols\SymbolFinder.FindLiteralsServerCallback.cs (1)
32=> _progress.ProgressTracker.ItemsCompletedAsync(count, cancellationToken);
FindSymbols\SymbolFinder.FindReferencesServerCallback.cs (1)
44=> _progress.ProgressTracker.ItemsCompletedAsync(count, cancellationToken);
Shared\Utilities\IStreamingProgressTrackerExtensions.cs (1)
24=> tracker.ItemsCompletedAsync(1, cancellationToken);