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

com.addc.commons.statistcs.collector.CounterMBean Maven / Gradle / Ivy

package com.addc.commons.statistcs.collector;


/**
 * The CounterMBean defines the MBean interface for {@link Counter}s
 *
 */
public interface CounterMBean {

    /**
     * @return The current value of the counter
     */
    long getCount();

    /**
     * @return The name of this counter
     */
    String getName();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy