public HostStoppedEvent(HostLifeIdentity host)
 {
     Host = host;
 }
 public NewUnrelatedSolutionDetectedEvent(HostLifeIdentity host, SolutionHead deployment, SolutionDefinition solution)
 {
     Host       = host;
     Deployment = deployment;
     Solution   = solution;
 }
 public NewDeploymentOfSolutionDetectedEvent(HostLifeIdentity host, SolutionHead deployment, SolutionDefinition solution)
 {
     Host = host;
     Deployment = deployment;
     Solution = solution;
 }
Ejemplo n.º 4
0
 public CellDeadRestartedEvent(HostLifeIdentity host, string cellName, string solutionName)
 {
     Host         = host;
     CellName     = cellName;
     SolutionName = solutionName;
 }
 public HostStoppedEvent(HostLifeIdentity host)
 {
     Host = host;
 }
 public CellDeadRestartedEvent(HostLifeIdentity host, string cellName, string solutionName)
 {
     Host = host;
     CellName = cellName;
     SolutionName = solutionName;
 }