internal ApplicationEnvironment(IHostContext hostContext, CellLifeIdentity cellIdentity, SolutionHead solution, AssembliesHead assemblies, Action <IHostCommand> sendCommand)
 {
     _hostContext  = hostContext;
     _cellIdentity = cellIdentity;
     _solution     = solution;
     _assemblies   = assemblies;
     _sendCommand  = sendCommand;
 }
 public CellStoppedEvent(CellLifeIdentity cell)
 {
     Cell = cell;
 }
Example #3
0
 public CellStartedEvent(CellLifeIdentity cell)
 {
     Cell = cell;
 }
 public CellAbortedEvent(CellLifeIdentity cell, Exception exception)
 {
     Cell = cell;
     Exception = exception;
 }
Example #5
0
 public CellAbortedEvent(CellLifeIdentity cell, Exception exception)
 {
     Cell      = cell;
     Exception = exception;
 }
Example #6
0
 public CellFatalErrorRestartedEvent(CellLifeIdentity cell, Exception exception)
 {
     Cell      = cell;
     Exception = exception;
 }
 public CellExceptionRestartedEvent(CellLifeIdentity cell, Exception exception, bool floodPrevention)
 {
     Cell = cell;
     Exception = exception;
     FloodPrevention = floodPrevention;
 }
 public CellExceptionRestartedEvent(CellLifeIdentity cell, Exception exception, bool floodPrevention)
 {
     Cell            = cell;
     Exception       = exception;
     FloodPrevention = floodPrevention;
 }
 public CellFatalErrorRestartedEvent(CellLifeIdentity cell, Exception exception)
 {
     Cell = cell;
     Exception = exception;
 }