2 writes to _eventQueue
Microsoft.Build (2)
BackEnd\Components\Logging\LoggingService.cs (2)
1390
_eventQueue
= new ConcurrentQueue<object>();
1443
_eventQueue
= null;
7 references to _eventQueue
Microsoft.Build (7)
BackEnd\Components\Logging\LoggingService.cs (7)
266
/// Task which pump/process messages from <see cref="
_eventQueue
"/>
1305
while (
_eventQueue
.Count >= _queueCapacity)
1311
_eventQueue
.Enqueue(buildEvent);
1331
while (
_eventQueue
?.IsEmpty == false)
1408
if (
_eventQueue
.TryDequeue(out object ev))
1418
if (!completeAdding.IsCancellationRequested &&
_eventQueue
.IsEmpty)
1425
} while (!
_eventQueue
.IsEmpty || !completeAdding.IsCancellationRequested);