Interface Counter
- All Superinterfaces:
Meter
- All Known Implementing Classes:
CumulativeCounter, DropwizardCounter, NoopCounter, StepCounter
-
Nested Class Summary
Nested ClassesNested classes/interfaces inherited from interface Meter
Meter.Id, Meter.MeterProvider<T>, Meter.Type -
Method Summary
Modifier and TypeMethodDescriptionstatic Counter.Builderdoublecount()default voidUpdate the counter by one.voidincrement(double amount) Update the counter byamount.default Iterable<Measurement> measure()Get a set of measurements.
-
Method Details
-
builder
-
increment
default void increment()Update the counter by one. -
increment
void increment(double amount) Update the counter byamount.- Parameters:
amount- Amount to add to the counter.
-
count
double count()- Returns:
- The cumulative count since this counter was created.
-
measure
Description copied from interface:MeterGet a set of measurements. Should always return the same number of measurements and in the same order, regardless of the level of activity or the lack thereof.
-