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

com.avast.metrics.api.Meter Maven / Gradle / Ivy

package com.avast.metrics.api;

public interface Meter extends Metric {

    void mark();

    void mark(long n);

    /**
     * @return Total number of events in this meter.
     */
    long count();

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy