4 implementations of ItemsCompletedAsync
Microsoft.CodeAnalysis.CSharp.Features.UnitTests (1)
SemanticSearch\Mocks\MockSemanticSearchResultsObserver.cs (1)
29public ValueTask ItemsCompletedAsync(int itemCount, CancellationToken cancellationToken)
Microsoft.CodeAnalysis.ExternalAccess.Copilot (1)
Internal\SemanticSearch\CopilotSemanticSearchQueryExecutor.cs (1)
36public ValueTask ItemsCompletedAsync(int itemCount, CancellationToken cancellationToken)
Microsoft.CodeAnalysis.Remote.ServiceHub (1)
Services\SemanticSearch\RemoteSemanticSearchService.cs (1)
35public ValueTask ItemsCompletedAsync(int itemCount, CancellationToken cancellationToken)
Microsoft.VisualStudio.LanguageServices.CSharp (1)
SemanticSearch\SemanticSearchQueryExecutor.cs (1)
31public ValueTask ItemsCompletedAsync(int itemCount, CancellationToken cancellationToken)
3 references to ItemsCompletedAsync
Microsoft.CodeAnalysis.Features (3)
SemanticSearch\AbstractSemanticSearchService.cs (1)
205await observer.ItemsCompletedAsync(remainingProgressItemCount, cancellationToken).ConfigureAwait(false);
SemanticSearch\IRemoteSemanticSearchService.cs (1)
97await observer.ItemsCompletedAsync(itemCount, cancellationToken).ConfigureAwait(false);
SemanticSearch\QueryExecutionContext.cs (1)
112await resultsObserver.ItemsCompletedAsync(1, cancellationToken).ConfigureAwait(false);