2 implementations of GetListener
Microsoft.CodeAnalysis.Workspaces (2)
Shared\TestHooks\AsynchronousOperationListenerProvider.cs (1)
80public IAsynchronousOperationListener GetListener(string featureName)
Shared\TestHooks\AsynchronousOperationListenerProvider+NullListenerProvider.cs (1)
11public IAsynchronousOperationListener GetListener(string featureName) => NullListener;
6 references to GetListener
Microsoft.CodeAnalysis.Workspaces (6)
ExternalAccess\VSTypeScript\Api\VSTypeScriptAsynchronousOperationListenerProvider.cs (1)
20=> new(provider.GetListener(featureName));
FindSymbols\SymbolTree\SymbolTreeInfoCacheServiceFactory.cs (1)
19private readonly IAsynchronousOperationListener _listener = listenerProvider.GetListener(FeatureAttribute.SolutionCrawlerLegacy);
Notification\AbstractGlobalOperationNotificationService.cs (1)
35listenerProvider.GetListener(FeatureAttribute.GlobalOperation),
Storage\SQLite\v2\SQLitePersistentStorageService.cs (1)
28private readonly IAsynchronousOperationListener _asyncListener = asyncOperationListenerProvider.GetListener(FeatureAttribute.PersistentStorage);
Workspace\Host\TaskScheduler\WorkspaceAsynchronousOperationListenerProvider.cs (2)
18private readonly IAsynchronousOperationListener _listener = listenerProvider.GetListener(FeatureAttribute.Workspace); 24=> listenerProvider.GetListener(featureName);