2 implementations of IAsynchronousOperationListener
Microsoft.CodeAnalysis.Workspaces (2)
Shared\TestHooks\AsynchronousOperationListener.cs (1)
16internal sealed partial class AsynchronousOperationListener : IAsynchronousOperationListener, IAsynchronousOperationWaiter
Shared\TestHooks\AsynchronousOperationListenerProvider+NullOperationListener.cs (1)
15private sealed class NullOperationListener : IAsynchronousOperationListener
40 references to IAsynchronousOperationListener
IdeBenchmarks (1)
SQLitePersistentStorageBenchmark.cs (1)
64var asyncListener = _workspace.ExportProvider.GetExportedValue<IAsynchronousOperationListenerProvider>().GetListener(FeatureAttribute.PersistentStorage);
Microsoft.CodeAnalysis.EditorFeatures (1)
Remote\SolutionChecksumUpdater.cs (1)
61var listener = listenerProvider.GetListener(FeatureAttribute.SolutionChecksumUpdater);
Microsoft.CodeAnalysis.ExternalAccess.Razor (1)
RazorAsynchronousOperationListenerProviderAccessor.cs (1)
28var inner = _implementation.GetListener(featureName);
Microsoft.CodeAnalysis.Workspaces (30)
FindSymbols\SymbolTree\SymbolTreeInfoCacheService.cs (1)
43public SymbolTreeInfoCacheService(Workspace workspace, IAsynchronousOperationListener listener)
FindSymbols\SymbolTree\SymbolTreeInfoCacheServiceFactory.cs (1)
19private readonly IAsynchronousOperationListener _listener = listenerProvider.GetListener(FeatureAttribute.SolutionCrawlerLegacy);
Remote\IRemoteKeepAliveService.cs (2)
44private RemoteKeepAliveSession(SolutionCompilationState compilationState, IAsynchronousOperationListener listener) 100public static RemoteKeepAliveSession Create(Solution solution, IAsynchronousOperationListener listener)
Shared\TestHooks\AsynchronousOperationListenerProvider.cs (3)
22/// <see cref="IAsynchronousOperationListener" /> and use 31public static readonly IAsynchronousOperationListener NullListener = new NullOperationListener(); 80public IAsynchronousOperationListener GetListener(string featureName)
Shared\TestHooks\AsynchronousOperationListenerProvider+NullListenerProvider.cs (1)
11public IAsynchronousOperationListener GetListener(string featureName) => NullListener;
Shared\TestHooks\IAsynchronousOperationListenerProvider.cs (3)
8/// Return <see cref="IAsynchronousOperationListener"/> for the given featureName 15/// Get <see cref="IAsynchronousOperationListener"/> for given feature. 18IAsynchronousOperationListener GetListener(string featureName);
Shared\Utilities\AsyncBatchingWorkQueue`0.cs (1)
18IAsynchronousOperationListener asyncListener,
Shared\Utilities\AsyncBatchingWorkQueue`1.cs (2)
19IAsynchronousOperationListener asyncListener, 25IAsynchronousOperationListener asyncListener,
Shared\Utilities\AsyncBatchingWorkQueue`2.cs (2)
44private readonly IAsynchronousOperationListener _asyncListener; 108IAsynchronousOperationListener asyncListener,
Storage\SQLite\v2\SQLitePersistentStorage.cs (2)
95IAsynchronousOperationListener asyncListener, 123IAsynchronousOperationListener asyncListener,
Storage\SQLite\v2\SQLitePersistentStorageService.cs (2)
21IAsynchronousOperationListener asyncListener) : AbstractPersistentStorageService(configuration), IWorkspaceService 29private readonly IAsynchronousOperationListener _asyncListener = asyncOperationListenerProvider.GetListener(FeatureAttribute.PersistentStorage);
Utilities\TaskQueue.cs (2)
17public IAsynchronousOperationListener Listener { get; } 22public TaskQueue(IAsynchronousOperationListener operationListener, TaskScheduler taskScheduler)
Workspace\Host\TaskScheduler\IWorkspaceAsynchronousOperationListenerProvider.cs (3)
10/// Workspace service that provides <see cref="IAsynchronousOperationListener"/> instance. 14IAsynchronousOperationListener GetListener(); 15IAsynchronousOperationListener GetListener(string featureName);
Workspace\Host\TaskScheduler\WorkspaceAsynchronousOperationListenerProvider.cs (3)
18private readonly IAsynchronousOperationListener _listener = listenerProvider.GetListener(FeatureAttribute.Workspace); 20public IAsynchronousOperationListener GetListener() 23public IAsynchronousOperationListener GetListener(string featureName)
Workspace\ProjectSystem\FileWatchedPortableExecutableReferenceFactory.cs (1)
53IAsynchronousOperationListener asyncListener,
Workspace\ProjectSystem\ProjectSystemProjectFactory.cs (1)
43public IAsynchronousOperationListener WorkspaceListener { get; }
Microsoft.VisualStudio.IntegrationTest.Setup (1)
AsyncCompletionTracker.cs (1)
48var listener = _asynchronousOperationListenerProvider.GetListener(FeatureAttribute.CompletionSet);
Microsoft.VisualStudio.LanguageServices (6)
InheritanceMargin\InheritanceMarginViewMarginProvider.cs (1)
81var listener = _listenerProvider.GetListener(FeatureAttribute.InheritanceMargin);
LanguageService\AbstractLanguageService`2.VsCodeWindowManager.cs (1)
259var asyncListener = asyncListenerProvider.GetListener(FeatureAttribute.DocumentOutline);
Library\AbstractObjectList.cs (1)
319var asynchronousOperationListener = LibraryManager.ComponentModel.GetService<IAsynchronousOperationListenerProvider>().GetListener(FeatureAttribute.LibraryManager);
Library\ObjectBrowser\AbstractObjectBrowserLibraryManager.cs (1)
489var asynchronousOperationListener = ComponentModel.GetService<IAsynchronousOperationListenerProvider>().GetListener(FeatureAttribute.LibraryManager);
PdbSourceDocument\PdbSourceDocumentOutputWindowLogger.cs (1)
41var asyncListener = listenerProvider.GetListener(nameof(PdbSourceDocumentOutputWindowLogger));
ProjectSystem\OpenTextBufferProvider.cs (1)
71var listener = listenerProvider.GetListener(FeatureAttribute.Workspace);