Constructors
Synopses
Declared in <balm_metricrecord.h>
Create a metric record having default values for its metric metricId, count, total, min, and max attributes. The default metricId is the invalid id value, the default count is 0, the default total is 0.0, the default min is the defined k_DEFAULT_MIN constant (the representation for positive infinity), and the default max is the defined k_DEFAULT_MAX constant (the representation for negative infinity).
MetricRecord();
Create a metric record having the specified metricId, and default values for the total, count, min, and max attributes. The default count is 0, the default total is 0.0, the default min is the defined k_DEFAULT_MIN constant (the representation for positive infinity), and the default max is the defined k_DEFAULT_MAX constant (the representation for negative infinity).
MetricRecord(MetricId const& metricId);
Create a metric record having the specified metricId, count, total, min, and max attribute values.
MetricRecord(
MetricId const& metricId,
int count,
double total,
double min,
double max);
Created with MrDocs