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();
}