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

com.codahale.metrics.Counting Maven / Gradle / Ivy

There is a newer version: 1.1.1
Show newest version
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 - 2024 Weber Informatics LLC | Privacy Policy