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)
178_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)
799return packet is NodeBuildComplete buildCompletePacket && !buildCompletePacket.PrepareForReuse;
BackEnd\Node\InProcNode.cs (2)
393HandleNodeBuildComplete(packet as NodeBuildComplete); 507private void HandleNodeBuildComplete(NodeBuildComplete buildComplete)
BackEnd\Node\OutOfProcNode.cs (3)
182(this as INodePacketFactory).RegisterPacketHandler(NodePacketType.NodeBuildComplete, NodeBuildComplete.FactoryForDeserialization, this); 643HandleNodeBuildComplete(packet as NodeBuildComplete); 845private void HandleNodeBuildComplete(NodeBuildComplete buildComplete)
BackEnd\Node\OutOfProcServerNode.cs (3)
90(this as INodePacketFactory).RegisterPacketHandler(NodePacketType.NodeBuildComplete, NodeBuildComplete.FactoryForDeserialization, this); 304HandleServerShutdownCommand((NodeBuildComplete)packet); 317private void HandleServerShutdownCommand(NodeBuildComplete buildComplete)
NodeBuildComplete.cs (2)
74internal static NodeBuildComplete FactoryForDeserialization(ITranslator translator) 76NodeBuildComplete packet = new NodeBuildComplete();