2 writes to _packetQueue
Microsoft.Build (2)
BackEnd\Components\Communications\NodeEndpointInProc.cs (2)
378
_packetQueue
= new ConcurrentQueue<INodePacket>();
413
_packetQueue
= null;
5 references to _packetQueue
Microsoft.Build (5)
BackEnd\Components\Communications\NodeEndpointInProc.cs (5)
343
Assumed.NotNull(
_packetQueue
, "packetQueue is null");
346
_packetQueue
.Enqueue(packet);
360
Assumed.Null(
_packetQueue
, "packetQueue != null");
397
Assumed.NotNull(
_packetQueue
, "packetQueue == null");
444
while (
_packetQueue
.TryDequeue(out packet))