Beispiel #1
0
 public void AddFanout(Metric metric)
 {
     fanout.Add(metric);
 }
Beispiel #2
0
 public bool Equals(Metric other)
 {
     if (ReferenceEquals(null, other)) return false;
     if (ReferenceEquals(this, other)) return true;
     return other.Mean.Equals(Mean) && other.Min.Equals(Min) && other.Max.Equals(Max) && other.Count == Count;
 }