public interface Meter
Modifier and Type | Method and Description |
---|---|
double |
calculate()
Returns the meter's calculated value.
|
java.lang.String |
getName()
Returns the meter's name.
|
double |
peek()
Returns the current meter value without updating the sample.
|
void |
sample()
Gather the meter's next sample to be used by the calculate function.
|
java.lang.String getName()
void sample()
double calculate()
double peek()