1 write to _packetQueue
MSBuildTaskHost (1)
BackEnd\NodeEndpointOutOfProcTaskHost.cs (1)
159
_packetQueue
= new ConcurrentQueue<INodePacket>();
6 references to _packetQueue
MSBuildTaskHost (6)
BackEnd\NodeEndpointOutOfProcTaskHost.cs (6)
198
ErrorUtilities.VerifyThrow(
_packetQueue
!= null, $"{nameof(
_packetQueue
)} is null");
201
_packetQueue
.Enqueue(packet);
233
ErrorUtilities.VerifyThrow(
_packetQueue
!= null, $"{nameof(
_packetQueue
)} is null");
241
ConcurrentQueue<INodePacket> localPacketQueue =
_packetQueue
;