5 instantiations of NodeBuildComplete
Microsoft.Build (5)
BackEnd\Client\MSBuildClient.cs (1)
483return TrySendPacket(() => new NodeBuildComplete(false /* no node reuse */));
BackEnd\Components\Communications\NodeProviderInProc.cs (1)
163nodeContext._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();
12 references to NodeBuildComplete
Microsoft.Build (12)
BackEnd\Components\Communications\NodeProviderOutOfProcBase.cs (2)
854if (packet is NodeBuildComplete) 880return packet is NodeBuildComplete buildCompletePacket && !buildCompletePacket.PrepareForReuse;
BackEnd\Node\InProcNode.cs (2)
408HandleNodeBuildComplete(packet as NodeBuildComplete); 526private void HandleNodeBuildComplete(NodeBuildComplete buildComplete)
BackEnd\Node\OutOfProcNode.cs (3)
186(this as INodePacketFactory).RegisterPacketHandler(NodePacketType.NodeBuildComplete, NodeBuildComplete.FactoryForDeserialization, this); 660HandleNodeBuildComplete(packet as NodeBuildComplete); 866private void HandleNodeBuildComplete(NodeBuildComplete buildComplete)
BackEnd\Node\OutOfProcServerNode.cs (3)
83(this as INodePacketFactory).RegisterPacketHandler(NodePacketType.NodeBuildComplete, NodeBuildComplete.FactoryForDeserialization, this); 307HandleServerShutdownCommand((NodeBuildComplete)packet); 320private void HandleServerShutdownCommand(NodeBuildComplete buildComplete)
NodeBuildComplete.cs (2)
74internal static NodeBuildComplete FactoryForDeserialization(ITranslator translator) 76NodeBuildComplete packet = new NodeBuildComplete();