6 implementations of INodePacket
MSBuild (6)
LogMessagePacketBase.cs (1)
261
internal abstract class LogMessagePacketBase :
INodePacket
NodeBuildComplete.cs (1)
14
internal class NodeBuildComplete :
INodePacket
NodeShutdown.cs (1)
36
internal class NodeShutdown :
INodePacket
TaskHostConfiguration.cs (1)
19
internal class TaskHostConfiguration :
INodePacket
TaskHostTaskCancelled.cs (1)
12
internal class TaskHostTaskCancelled :
INodePacket
TaskHostTaskComplete.cs (1)
53
internal class TaskHostTaskComplete :
INodePacket
25 references to INodePacket
MSBuild (25)
INodeEndpoint.cs (2)
21
internal delegate void DataReceivedDelegate(INodeEndpoint endpoint,
INodePacket
packet);
104
void SendData(
INodePacket
packet);
INodePacketFactory.cs (2)
13
internal delegate
INodePacket
NodePacketFactoryMethod(ITranslator translator);
50
void RoutePacket(int nodeId,
INodePacket
packet);
INodePacketHandler.cs (1)
19
void PacketReceived(int node,
INodePacket
packet);
LogMessagePacket.cs (1)
45
internal static
INodePacket
FactoryForDeserialization(ITranslator translator)
NodeEndpointOutOfProcBase.cs (7)
102
private ConcurrentQueue<
INodePacket
> _packetQueue;
182
public void SendData(
INodePacket
packet)
315
private void EnqueuePacket(
INodePacket
packet)
337
_packetQueue = new ConcurrentQueue<
INodePacket
>();
353
ConcurrentQueue<
INodePacket
> localPacketQueue = _packetQueue;
515
ConcurrentQueue<
INodePacket
> localPacketQueue, AutoResetEvent localPacketAvailable, AutoResetEvent localTerminatePacketPump)
626
INodePacket
packet;
NodePacketFactory.cs (3)
64
public void RoutePacket(int nodeId,
INodePacket
packet)
101
INodePacket
packet = _factoryMethod(translator);
108
public void RoutePacket(int nodeId,
INodePacket
packet)
OutOfProcTaskHostNode.cs (6)
86
private Queue<
INodePacket
> _receivedPackets;
187
_receivedPackets = new Queue<
INodePacket
>();
600
public void RoutePacket(int nodeId,
INodePacket
packet)
615
public void PacketReceived(int node,
INodePacket
packet)
659
INodePacket
packet = null;
700
private void HandlePacket(
INodePacket
packet)
TaskHostConfiguration.cs (1)
471
internal static
INodePacket
FactoryForDeserialization(ITranslator translator)
TaskHostTaskCancelled.cs (1)
41
internal static
INodePacket
FactoryForDeserialization(ITranslator translator)
TaskHostTaskComplete.cs (1)
258
internal static
INodePacket
FactoryForDeserialization(ITranslator translator)