コード例 #1
0
ファイル: Timer.cs プロジェクト: chrissmeuk/Metrics.NET
 public TimerValue(MeterValue rate, HistogramValue histogram)
 {
     this.Rate      = rate;
     this.Histogram = histogram;
 }
コード例 #2
0
ファイル: Meter.cs プロジェクト: kouweizhong/Metrics.NET
 public SetItem(string item, double percent, MeterValue value)
 {
     this.Item    = item;
     this.Percent = percent;
     this.Value   = value;
 }