Exemplo n.º 1
0
 public BuilderStep(BuilderStepType stepType, double confidenceLevel, LatencyValidatorBehavior behavior, TimeInterval byAtLeast)
 {
     this.ByAtLeastTimeInterval = byAtLeast;
     this.StepType        = stepType;
     this.ConfidenceLevel = confidenceLevel;
     this.Behavior        = behavior;
 }
Exemplo n.º 2
0
 public BuilderStep(BuilderStepType stepType, double confidenceLevel, LatencyValidatorBehavior behavior, Percent byAtLeast)
 {
     this.ByAtLeastPercent = byAtLeast;
     this.StepType         = stepType;
     this.ConfidenceLevel  = confidenceLevel;
     this.Behavior         = behavior;
 }