blob: 61dbcf1b2faa0a0253372011e1c8feafc729678d [file] [log] [blame]
package org.apache.ignite.internal.metrics;
/**
* Interface for the metrics that holds long primitive.
*/
public interface LongMetric extends Metric {
/** @return Value of the metric. */
public long value();
/** {@inheritDoc} */
@Override public default String getAsString() {
return Long.toString(value());
}
}