1 write to Listener
Microsoft.CodeAnalysis.Workspaces (1)
Utilities\TaskQueue.cs (1)
27Listener = operationListener;
7 references to Listener
Microsoft.CodeAnalysis.Workspaces (7)
Utilities\TaskQueue.cs (3)
35=> Listener.BeginAsyncOperation(taskName); 48/// Enqueue specified <paramref name="operation"/> and notify <see cref="Listener"/> of its start and completion. 68/// Assumes <see cref="Listener"/> has already been notified of its start and will be notified when it completes.
Workspace\Workspace_Editor.cs (4)
458var token = _taskQueue.Listener.BeginAsyncOperation(nameof(OnSourceGeneratedDocumentOpened)); 460token = _taskQueue.Listener.BeginAsyncOperation(TextDocumentOpenedEventName); 478var token = _taskQueue.Listener.BeginAsyncOperation(nameof(OnSourceGeneratedDocumentClosed)); 480token = _taskQueue.Listener.BeginAsyncOperation(TextDocumentClosedEventName);