|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object org.elasticsearch.common.StopWatch
public class StopWatch
Simple stop watch, allowing for timing of a number of tasks, exposing total running time and running time for each named task.
Conceals use of System.currentTimeMillis()
, improving the
readability of application code and reducing the likelihood of calculation errors.
Note that this object is not designed to be thread-safe and does not use synchronization.
This class is normally used to verify performance during proof-of-concepts and in development, rather than as part of production applications.
Nested Class Summary | |
---|---|
static class |
StopWatch.TaskInfo
Inner class to hold data about one task executed within the stop watch. |
Constructor Summary | |
---|---|
StopWatch()
Construct a new stop watch. |
|
StopWatch(java.lang.String id)
Construct a new stop watch with the given id. |
Method Summary | |
---|---|
boolean |
isRunning()
Return whether the stop watch is currently running. |
StopWatch |
keepTaskList(boolean keepTaskList)
Determine whether the TaskInfo array is built over time. |
java.lang.String |
lastTaskName()
Return the name of the last task. |
TimeValue |
lastTaskTime()
Return the time taken by the last task. |
java.lang.String |
prettyPrint()
Return a string with a table describing all tasks performed. |
java.lang.String |
shortSummary()
Return a short description of the total running time. |
StopWatch |
start()
Start an unnamed task. |
StopWatch |
start(java.lang.String taskName)
Start a named task. |
StopWatch |
stop()
Stop the current task. |
int |
taskCount()
Return the number of tasks timed. |
StopWatch.TaskInfo[] |
taskInfo()
Return an array of the data for tasks performed. |
java.lang.String |
toString()
Return an informative string describing all tasks performed For custom reporting, call getTaskInfo() and use the task info directly. |
TimeValue |
totalTime()
Return the total time for all tasks. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Constructor Detail |
---|
public StopWatch()
public StopWatch(java.lang.String id)
id
- identifier for this stop watch.
Handy when we have output from multiple stop watches
and need to distinguish between them.Method Detail |
---|
public StopWatch keepTaskList(boolean keepTaskList)
public StopWatch start() throws java.lang.IllegalStateException
stop()
or timing methods are called without invoking this method.
java.lang.IllegalStateException
stop()
public StopWatch start(java.lang.String taskName) throws java.lang.IllegalStateException
stop()
or timing methods are called without invoking this method.
taskName
- the name of the task to start
java.lang.IllegalStateException
stop()
public StopWatch stop() throws java.lang.IllegalStateException
start()
/ stop()
methods.
java.lang.IllegalStateException
start()
public boolean isRunning()
public TimeValue lastTaskTime() throws java.lang.IllegalStateException
java.lang.IllegalStateException
public java.lang.String lastTaskName() throws java.lang.IllegalStateException
java.lang.IllegalStateException
public TimeValue totalTime()
public int taskCount()
public StopWatch.TaskInfo[] taskInfo()
public java.lang.String shortSummary()
public java.lang.String prettyPrint()
public java.lang.String toString()
getTaskInfo()
and use the task info directly.
toString
in class java.lang.Object
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |