public abstract class AbstractTimer extends AbstractMeter implements Timer
Timer.BuilderMeter.Id, Meter.Type| Modifier and Type | Field and Description |
|---|---|
protected Clock |
clock |
protected TimeWindowLatencyHistogram |
histogram |
| Modifier | Constructor and Description |
|---|---|
protected |
AbstractTimer(Meter.Id id,
Clock clock,
HistogramConfig histogramConfig) |
| Modifier and Type | Method and Description |
|---|---|
boolean |
equals(java.lang.Object o) |
int |
hashCode() |
double |
histogramCountAtValue(long valueNanos) |
double |
percentile(double percentile,
java.util.concurrent.TimeUnit unit)
The latency at a specific percentile.
|
void |
record(long amount,
java.util.concurrent.TimeUnit unit)
Updates the statistics kept by the counter with the specified amount.
|
void |
record(java.lang.Runnable f)
Executes the runnable `f` and records the time taken.
|
<T> T |
record(java.util.function.Supplier<T> f)
Executes the Supplier `f` and records the time taken.
|
<T> T |
recordCallable(java.util.concurrent.Callable<T> f)
Executes the callable `f` and records the time taken.
|
protected abstract void |
recordNonNegative(long amount,
java.util.concurrent.TimeUnit unit) |
HistogramConfig |
statsConfig() |
<T> java.util.concurrent.Callable<T> |
wrap(java.util.concurrent.Callable<T> f)
Wrap a
Callable so that it is timed when invoked. |
getIdclone, finalize, getClass, notify, notifyAll, toString, wait, wait, waitprotected final Clock clock
protected final TimeWindowLatencyHistogram histogram
protected AbstractTimer(Meter.Id id, Clock clock, HistogramConfig histogramConfig)
public <T> T recordCallable(java.util.concurrent.Callable<T> f)
throws java.lang.Exception
TimerrecordCallable in interface Timerf - Function to execute and measure the execution time.java.lang.Exceptionpublic <T> T record(java.util.function.Supplier<T> f)
Timerpublic <T> java.util.concurrent.Callable<T> wrap(java.util.concurrent.Callable<T> f)
TimerCallable so that it is timed when invoked.public void record(java.lang.Runnable f)
Timerpublic final void record(long amount,
java.util.concurrent.TimeUnit unit)
Timerprotected abstract void recordNonNegative(long amount,
java.util.concurrent.TimeUnit unit)
public double percentile(double percentile,
java.util.concurrent.TimeUnit unit)
Timerpercentile in interface Timerpublic double histogramCountAtValue(long valueNanos)
histogramCountAtValue in interface Timerpublic boolean equals(java.lang.Object o)
equals in class java.lang.Objectpublic int hashCode()
hashCode in class java.lang.Objectpublic HistogramConfig statsConfig()