1 implementation of GetListener
Microsoft.CodeAnalysis.Workspaces (1)
Workspace\Host\TaskScheduler\WorkspaceAsynchronousOperationListenerProvider.cs (1)
23public IAsynchronousOperationListener GetListener()
6 references to GetListener
Microsoft.CodeAnalysis.EditorFeatures (1)
EditorConfigSettings\Updater\SettingsUpdaterBase.cs (1)
29_listener = workspace.Services.GetRequiredService<IWorkspaceAsynchronousOperationListenerProvider>().GetListener();
Microsoft.CodeAnalysis.Features (2)
Workspace\BackgroundCompiler.cs (1)
40listenerProvider.GetListener(),
Workspace\BackgroundParser.cs (1)
43_taskQueue = new TaskQueue(listenerProvider.GetListener(), TaskScheduler.Default);
Microsoft.CodeAnalysis.Workspaces (2)
Workspace\ProjectSystem\ProjectSystemProjectFactory.cs (1)
69WorkspaceListener = workspace.Services.GetRequiredService<IWorkspaceAsynchronousOperationListenerProvider>().GetListener();
Workspace\Workspace.cs (1)
82_taskQueue = new TaskQueue(listenerProvider.GetListener(), schedulerProvider.CurrentContextScheduler);
Microsoft.VisualStudio.LanguageServices (1)
ProjectSystem\VisualStudioWorkspaceImpl.cs (1)
146_workspaceListener = Services.GetRequiredService<IWorkspaceAsynchronousOperationListenerProvider>().GetListener();