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)
336ErrorUtilities.VerifyThrow(_packetQueue != null, "packetQueue is null"); 339_packetQueue.Enqueue(packet); 353ErrorUtilities.VerifyThrow(_packetQueue == null, "packetQueue != null"); 390ErrorUtilities.VerifyThrow(_packetQueue != null, "packetQueue == null"); 437while (_packetQueue.TryDequeue(out packet))