Class StopWatch
Conceals use of System.nanoTime()
, 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-concept work and in development, rather than as part of production applications.
As of Spring Framework 5.2, running time is tracked and reported in nanoseconds.
- Since:
- May 2, 2001
- Author:
- Rod Johnson, Juergen Hoeller, Sam Brannen
-
Nested Class Summary
Modifier and TypeClassDescriptionstatic final class
Nested class to hold data about one task executed within theStopWatch
. -
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionGet the name of the currently running task, if any.getId()
Get the ID of thisStopWatch
, as specified on construction.Get the last task as aStopWatch.TaskInfo
object.Get the name of the last task.long
Get the time taken by the last task in milliseconds.long
Get the time taken by the last task in nanoseconds.int
Get the number of tasks timed.Get an array of the data for tasks performed.long
Get the total time in milliseconds for all tasks.long
Get the total time in nanoseconds for all tasks.double
Get the total time in seconds for all tasks.boolean
Determine whether thisStopWatch
is currently running.Generate a string with a table describing all tasks performed.void
setKeepTaskList
(boolean keepTaskList) Configure whether theStopWatch.TaskInfo
array is built over time.Get a short description of the total running time.void
start()
Start an unnamed task.void
Start a named task.void
stop()
Stop the current task.toString()
Generate an informative string describing all tasks performed
-
Constructor Details
-
StopWatch
public StopWatch()Construct a newStopWatch
.Does not start any task.
-
StopWatch
Construct a newStopWatch
with the given ID.The ID is handy when we have output from multiple stop watches and need to distinguish between them.
Does not start any task.
- Parameters:
id
- identifier for this stop watch
-
-
Method Details
-
getId
Get the ID of thisStopWatch
, as specified on construction.- Returns:
- the ID (empty String by default)
- Since:
- 4.2.2
- See Also:
-
setKeepTaskList
public void setKeepTaskList(boolean keepTaskList) Configure whether theStopWatch.TaskInfo
array is built over time.Set this to
false
when using aStopWatch
for millions of intervals; otherwise, theTaskInfo
structure will consume excessive memory.Default is
true
. -
start
Start an unnamed task.The results are undefined if
stop()
or timing methods are called without invoking this method first.- Throws:
IllegalStateException
- See Also:
-
start
Start a named task.The results are undefined if
stop()
or timing methods are called without invoking this method first.- Parameters:
taskName
- the name of the task to start- Throws:
IllegalStateException
- See Also:
-
stop
Stop the current task.The results are undefined if timing methods are called without invoking at least one pair of
start()
/stop()
methods.- Throws:
IllegalStateException
- See Also:
-
isRunning
public boolean isRunning()Determine whether thisStopWatch
is currently running.- See Also:
-
currentTaskName
Get the name of the currently running task, if any.- Since:
- 4.2.2
- See Also:
-
getLastTaskTimeNanos
Get the time taken by the last task in nanoseconds.- Throws:
IllegalStateException
- Since:
- 5.2
- See Also:
-
getLastTaskTimeMillis
Get the time taken by the last task in milliseconds.- Throws:
IllegalStateException
- See Also:
-
getLastTaskName
Get the name of the last task.- Throws:
IllegalStateException
-
getLastTaskInfo
Get the last task as aStopWatch.TaskInfo
object.- Throws:
IllegalStateException
-
getTotalTimeNanos
public long getTotalTimeNanos()Get the total time in nanoseconds for all tasks.- Since:
- 5.2
- See Also:
-
getTotalTimeMillis
public long getTotalTimeMillis()Get the total time in milliseconds for all tasks.- See Also:
-
getTotalTimeSeconds
public double getTotalTimeSeconds()Get the total time in seconds for all tasks.- See Also:
-
getTaskCount
public int getTaskCount()Get the number of tasks timed. -
getTaskInfo
Get an array of the data for tasks performed. -
shortSummary
Get a short description of the total running time. -
prettyPrint
Generate a string with a table describing all tasks performed.For custom reporting, call
getTaskInfo()
and use the task info directly. -
toString
Generate an informative string describing all tasks performedFor custom reporting, call
getTaskInfo()
and use the task info directly.
-