コード例 #1
0
 private static void BuildApdexPayload <T>(
     string context,
     MetricValueSourceBase <ApdexValue> valueSource,
     IMetricPayloadBuilder <T> payloadBuilder)
 {
     payloadBuilder.PackApdex(context, valueSource);
 }
コード例 #2
0
 private void ReportApdex(string context, MetricValueSourceBase <ApdexValue> valueSource)
 {
     _payloadBuilder.PackApdex(context, valueSource);
 }
コード例 #3
0
ファイル: TestReporter.cs プロジェクト: yannify/AppMetrics
 private void ReportApdex(string context, MetricValueSourceBase <ApdexValue> valueSource)
 {
     _payloadBuilder.PackApdex(_metricNameFormatter, context, valueSource, _dataKeys.Apdex);
 }