7 references to _queue
Microsoft.CodeAnalysis.LanguageServer.Protocol (7)
src\LanguageServer\Microsoft.CommonLanguageServerProtocol.Framework\RequestExecutionQueue.cs (7)
180
var didEnqueue =
_queue
.TryEnqueue((item, Trace.CorrelationManager.ActivityId, combinedCancellationToken));
204
queueItem = await
_queue
.DequeueAsync(_cancelSource.Token).ConfigureAwait(false);
446
_queue
.Complete();
464
public bool IsComplete() => _queue.
_queue
.IsCompleted && _queue.
_queue
.IsEmpty;
481
while (!_queue.
_queue
.IsEmpty)
483
var (_, _, cancellationToken) = await _queue.
_queue
.DequeueAsync().ConfigureAwait(false);