com.codahale.metrics.Counting Maven / Gradle / Ivy
package com.codahale.metrics;
/**
* An interface for metric types which have counts.
*/
public interface Counting {
/**
* Returns the current count.
*
* @return the current count
*/
long getCount();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy