2 writes to _packetQueue
Microsoft.Build (2)
BackEnd\Components\Communications\NodeEndpointInProc.cs (2)
379
_packetQueue
= new ConcurrentQueue<INodePacket>();
414
_packetQueue
= null;
5 references to _packetQueue
Microsoft.Build (5)
BackEnd\Components\Communications\NodeEndpointInProc.cs (5)
344
ErrorUtilities.VerifyThrow(
_packetQueue
!= null, "packetQueue is null");
347
_packetQueue
.Enqueue(packet);
361
ErrorUtilities.VerifyThrow(
_packetQueue
== null, "packetQueue != null");
398
ErrorUtilities.VerifyThrow(
_packetQueue
!= null, "packetQueue == null");
445
while (
_packetQueue
.TryDequeue(out packet))