Modifier and Type | Class and Description |
---|---|
static class |
Timer.Context
A timing context.
|
Constructor and Description |
---|
Timer()
|
Timer(Reservoir reservoir)
|
Timer(Reservoir reservoir,
Clock clock)
|
Modifier and Type | Method and Description |
---|---|
long |
getCount()
Returns the number of events which have been marked.
|
double |
getFifteenMinuteRate()
Returns the fifteen-minute exponentially-weighted moving average rate at which events have
occurred since the meter was created.
|
double |
getFiveMinuteRate()
Returns the five-minute exponentially-weighted moving average rate at which events have
occurred since the meter was created.
|
double |
getMeanRate()
Returns the mean rate at which events have occurred since the meter was created.
|
double |
getOneMinuteRate()
Returns the one-minute exponentially-weighted moving average rate at which events have
occurred since the meter was created.
|
Snapshot |
getSnapshot()
Returns a snapshot of the values.
|
Timer.Context |
time()
Returns a new
Timer.Context . |
<T> T |
time(java.util.concurrent.Callable<T> event)
Times and records the duration of event.
|
void |
time(java.lang.Runnable event)
Times and records the duration of event.
|
void |
update(long duration,
java.util.concurrent.TimeUnit unit)
Adds a recorded duration.
|
public Timer()
public Timer(Reservoir reservoir)
reservoir
- the Reservoir
implementation the timer should usepublic void update(long duration, java.util.concurrent.TimeUnit unit)
duration
- the length of the durationunit
- the scale unit of duration
public <T> T time(java.util.concurrent.Callable<T> event) throws java.lang.Exception
T
- the type of the value returned by event
event
- a Callable
whose Callable.call()
method implements a process
whose duration should be timedevent
java.lang.Exception
- if event
throws an Exception
public void time(java.lang.Runnable event)
event
- a Runnable
whose Runnable.run()
method implements a process
whose duration should be timedpublic Timer.Context time()
Timer.Context
.Timer.Context
Timer.Context
public long getCount()
Metered
public double getFifteenMinuteRate()
Metered
top
Unix command.getFifteenMinuteRate
in interface Metered
public double getFiveMinuteRate()
Metered
top
Unix command.getFiveMinuteRate
in interface Metered
public double getMeanRate()
Metered
getMeanRate
in interface Metered
public double getOneMinuteRate()
Metered
top
Unix command.getOneMinuteRate
in interface Metered
public Snapshot getSnapshot()
Sampling
getSnapshot
in interface Sampling
"Copyright © 2010 - 2020 Adobe Systems Incorporated. All Rights Reserved"