1 write to _activeNodes
Microsoft.Build (1)
BackEnd\BuildManager\BuildManager.cs (1)
303_activeNodes = new HashSet<int>();
11 references to _activeNodes
Microsoft.Build (11)
BackEnd\BuildManager\BuildManager.cs (11)
1068ErrorUtilities.VerifyThrow(_activeNodes.Count == 0, "All nodes not yet shut down."); 1241activeNodeCount = _activeNodes?.Count; 1276ActiveNodeCount = _activeNodes.Count, 1312if (_activeNodes.Count > 0) 1314telemetry.ActiveNodeIds = string.Join(",", _activeNodes); 1319var nodeDetails = new List<string>(_activeNodes.Count); 1320foreach (int nodeId in _activeNodes) 2738ErrorUtilities.VerifyThrow(_activeNodes.Contains(node), "Unexpected shutdown from node {0} which shouldn't exist.", node); 2739_activeNodes.Remove(node); 2828if (_activeNodes.Count == 0) 2913_activeNodes.Add(node.NodeId);