1 write to Listener
Microsoft.CodeAnalysis.Workspaces (1)
Utilities\TaskQueue.cs (1)
28Listener = operationListener;
7 references to Listener
Microsoft.CodeAnalysis.Workspaces (7)
Utilities\TaskQueue.cs (3)
36=> Listener.BeginAsyncOperation(taskName); 49/// Enqueue specified <paramref name="operation"/> and notify <see cref="Listener"/> of its start and completion. 69/// Assumes <see cref="Listener"/> has already been notified of its start and will be notified when it completes.
Workspace\Workspace_Editor.cs (4)
435var token = _taskQueue.Listener.BeginAsyncOperation(nameof(OnSourceGeneratedDocumentOpened)); 437token = _taskQueue.Listener.BeginAsyncOperation(TextDocumentOpenedEventName); 455var token = _taskQueue.Listener.BeginAsyncOperation(nameof(OnSourceGeneratedDocumentClosed)); 457token = _taskQueue.Listener.BeginAsyncOperation(TextDocumentClosedEventName);