Exemplo n.º 1
0
 public Logic(RestartWithBackoffSource <T, TMat> stage, Attributes inheritedAttributes, string name)
     : base(name, stage.Shape, null, stage.Out, stage.Settings, stage.OnlyOnFailures)
 {
     _stage = stage;
     _inheritedAttributes = inheritedAttributes;
     Backoff();
 }
Exemplo n.º 2
0
 public Logic(RestartWithBackoffSource <T, TMat> stage, string name)
     : base(name, stage.Shape, null, stage.Out, stage.MinBackoff, stage.MaxBackoff, stage.RandomFactor, stage.OnlyOnFailures, stage.MaxRestarts)
 {
     _stage = stage;
     Backoff();
 }
Exemplo n.º 3
0
 public Logic(RestartWithBackoffSource <T, TMat> stage, string name)
     : base(name, stage.Shape, stage.MinBackoff, stage.MaxBackoff, stage.RandomFactor)
 {
     _stage = stage;
     Backoff();
 }