2 implementations of GetListener
Microsoft.CodeAnalysis.Workspaces (2)
Shared\TestHooks\AsynchronousOperationListenerProvider.cs (1)
80
public IAsynchronousOperationListener
GetListener
(string featureName)
Shared\TestHooks\AsynchronousOperationListenerProvider+NullListenerProvider.cs (1)
11
public 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)
19
private readonly IAsynchronousOperationListener _listener = listenerProvider.
GetListener
(FeatureAttribute.SolutionCrawlerLegacy);
Notification\AbstractGlobalOperationNotificationService.cs (1)
35
listenerProvider.
GetListener
(FeatureAttribute.GlobalOperation),
Storage\SQLite\v2\SQLitePersistentStorageService.cs (1)
28
private readonly IAsynchronousOperationListener _asyncListener = asyncOperationListenerProvider.
GetListener
(FeatureAttribute.PersistentStorage);
Workspace\Host\TaskScheduler\WorkspaceAsynchronousOperationListenerProvider.cs (2)
18
private readonly IAsynchronousOperationListener _listener = listenerProvider.
GetListener
(FeatureAttribute.Workspace);
24
=> listenerProvider.
GetListener
(featureName);