Package org.apache.fluo.api.metrics
Interface Counter
-
public interface Counter
Metrics Counter. See http://metrics.dropwizard.io/3.1.0/getting-started/#counters
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
dec()
Decrements counter by 1void
dec(long value)
Decrements counter by valuevoid
inc()
Increments counter by 1void
inc(long value)
Increments counter by value
-