![JAR search and dependency download from the Maven repository](/logo.png)
org.avaje.metric.GaugeLong Maven / Gradle / Ivy
The newest version!
package org.avaje.metric;
/**
* A Gauge returning a long value providing the 'source' for a {@link GaugeLongMetric}.
*
* A Gauge typically doesn't represent an "Event" but the current value of a resource like threads,
* memory etc.
*
* @see GaugeLongMetric
*/
public interface GaugeLong {
/**
* Return the current value.
*/
long getValue();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy