13 references to NodeEngineShutdownReason
MSBuildTaskHost (13)
OutOfProcTaskHost.cs (3)
104
NodeEngineShutdownReason
taskHostShutDownReason = oopTaskHostNode.Run(out taskHostShutDownException);
113
case
NodeEngineShutdownReason
.BuildComplete:
116
case
NodeEngineShutdownReason
.BuildCompleteReuse:
OutOfProcTaskHostNode.cs (10)
105
private
NodeEngineShutdownReason
_shutdownReason;
647
public
NodeEngineShutdownReason
Run(out Exception shutdownException, bool nodeReuse = false)
670
NodeEngineShutdownReason
shutdownReason = HandleShutdown();
774
_shutdownReason =
NodeEngineShutdownReason
.BuildComplete;
818
_shutdownReason =
NodeEngineShutdownReason
.BuildCompleteReuse;
823
_shutdownReason = buildComplete.PrepareForReuse && Traits.Instance.EscapeHatches.ReuseTaskHostNodes ?
NodeEngineShutdownReason
.BuildCompleteReuse :
NodeEngineShutdownReason
.BuildComplete;
831
private
NodeEngineShutdownReason
HandleShutdown()
864
_nodeEndpoint.SendData(new NodeShutdown(_shutdownReason ==
NodeEngineShutdownReason
.Error ? NodeShutdownReason.Error : NodeShutdownReason.Requested));
897
_shutdownReason =
NodeEngineShutdownReason
.ConnectionFailed;