All Downloads are FREE. Search and download functionalities are using the official Maven repository.

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