5 instantiations of NodeBuildComplete
Microsoft.Build (5)
BackEnd\Client\MSBuildClient.cs (1)
498return TrySendPacket(() => new NodeBuildComplete(false /* no node reuse */));
BackEnd\Components\Communications\NodeProviderInProc.cs (1)
179_inProcNodeEndpoint.SendData(new NodeBuildComplete(enableReuse));
BackEnd\Components\Communications\NodeProviderOutOfProcBase.cs (2)
127nodeContext.SendData(new NodeBuildComplete(enableReuse)); 177nodeContext.SendData(new NodeBuildComplete(false /* no node reuse */));
NodeBuildComplete.cs (1)
76NodeBuildComplete packet = new NodeBuildComplete();
11 references to NodeBuildComplete
Microsoft.Build (11)
BackEnd\Components\Communications\NodeProviderOutOfProcBase.cs (1)
802return packet is NodeBuildComplete buildCompletePacket && !buildCompletePacket.PrepareForReuse;
BackEnd\Node\InProcNode.cs (2)
403HandleNodeBuildComplete(packet as NodeBuildComplete); 517private void HandleNodeBuildComplete(NodeBuildComplete buildComplete)
BackEnd\Node\OutOfProcNode.cs (3)
184(this as INodePacketFactory).RegisterPacketHandler(NodePacketType.NodeBuildComplete, NodeBuildComplete.FactoryForDeserialization, this); 655HandleNodeBuildComplete(packet as NodeBuildComplete); 857private void HandleNodeBuildComplete(NodeBuildComplete buildComplete)
BackEnd\Node\OutOfProcServerNode.cs (3)
88(this as INodePacketFactory).RegisterPacketHandler(NodePacketType.NodeBuildComplete, NodeBuildComplete.FactoryForDeserialization, this); 312HandleServerShutdownCommand((NodeBuildComplete)packet); 325private void HandleServerShutdownCommand(NodeBuildComplete buildComplete)
NodeBuildComplete.cs (2)
74internal static NodeBuildComplete FactoryForDeserialization(ITranslator translator) 76NodeBuildComplete packet = new NodeBuildComplete();