1 write to _queue
Microsoft.CommonLanguageServerProtocol.Framework.Package (1)
RequestExecutionQueue.cs (1)
458
=>
_queue
= queue;
7 references to _queue
Microsoft.CommonLanguageServerProtocol.Framework.Package (7)
RequestExecutionQueue.cs (7)
460
public AbstractHandlerProvider GetHandlerProvider() =>
_queue
._handlerProvider;
462
public bool IsComplete() =>
_queue
._queue.IsCompleted &&
_queue
._queue.IsEmpty;
466
if (
_queue
._queueProcessingTask is not null)
468
await
_queue
._queueProcessingTask.ConfigureAwait(false);
479
while (!
_queue
._queue.IsEmpty)
481
var (_, _, cancellationToken) = await
_queue
._queue.DequeueAsync().ConfigureAwait(false);