2 writes to _eventQueue
Microsoft.Build (2)
BackEnd\Components\Logging\LoggingService.cs (2)
1387
_eventQueue
= new ConcurrentQueue<object>();
1440
_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
"/>
1302
while (
_eventQueue
.Count >= _queueCapacity)
1308
_eventQueue
.Enqueue(buildEvent);
1328
while (
_eventQueue
?.IsEmpty == false)
1405
if (
_eventQueue
.TryDequeue(out object ev))
1415
if (!completeAdding.IsCancellationRequested &&
_eventQueue
.IsEmpty)
1422
} while (!
_eventQueue
.IsEmpty || !completeAdding.IsCancellationRequested);