package com.codahale.metrics;

An interface for metric types which have counts.
/** * An interface for metric types which have counts. */
public interface Counting {
Returns the current count.
Returns:the current count
/** * Returns the current count. * * @return the current count */
long getCount(); }