示例#1
0
 public void Merge(IAccumulator <double, double> other)
 {
     _min = Math.Min(_min, other.GetLocalValue());
 }
示例#2
0
 public void Merge(IAccumulator <long, long> other)
 {
     _localValue += other.GetLocalValue();
 }
示例#3
0
 public void Merge(IAccumulator <double, double> other)
 {
     _max = Math.Max(_max, other.GetLocalValue());
 }
示例#4
0
 public void Merge(IAccumulator <long, long> other)
 {
     _max = Math.Max(_max, other.GetLocalValue());
 }
示例#5
0
 public void Merge(IAccumulator <int, int> other)
 {
     _localValue += other.GetLocalValue();
 }
示例#6
0
 public void Merge(IAccumulator <int, int> other)
 {
     _min = Math.Min(_min, other.GetLocalValue());
 }
示例#7
0
 public void Merge(IAccumulator <T, List <T> > other)
 {
     _localValue.AddRange(other.GetLocalValue());
 }
示例#8
0
 public void Merge(IAccumulator <double, double> other)
 {
     _localValue += other.GetLocalValue();
 }