2 writes to _packetQueue
Microsoft.Build (2)
BackEnd\Components\Communications\NodeEndpointInProc.cs (2)
371
_packetQueue
= new ConcurrentQueue<INodePacket>();
406
_packetQueue
= null;
5 references to _packetQueue
Microsoft.Build (5)
BackEnd\Components\Communications\NodeEndpointInProc.cs (5)
336
ErrorUtilities.VerifyThrow(
_packetQueue
!= null, "packetQueue is null");
339
_packetQueue
.Enqueue(packet);
353
ErrorUtilities.VerifyThrow(
_packetQueue
== null, "packetQueue != null");
390
ErrorUtilities.VerifyThrow(
_packetQueue
!= null, "packetQueue == null");
437
while (
_packetQueue
.TryDequeue(out packet))