Package javax.management.j2ee.statistics
Interface TimeStatistic
- All Superinterfaces:
Statistic
Specifies standard timing measurements.
-
Method Summary
Modifier and TypeMethodDescriptionlonggetCount()Number of times the operation was invoked since the beginning of this measurement.longThe maximum amount of time taken to complete one invocation of this operation since the beginning of this measurement.longThe minimum amount of time taken to complete one invocation of this operation since the beginning of this measurement.longThis is the sum total of time taken to complete every invocation of this operation since the beginning of this measurement.Methods inherited from interface javax.management.j2ee.statistics.Statistic
getDescription, getLastSampleTime, getName, getStartTime, getUnit
-
Method Details
-
getCount
long getCount()Number of times the operation was invoked since the beginning of this measurement. -
getMaxTime
long getMaxTime()The maximum amount of time taken to complete one invocation of this operation since the beginning of this measurement. -
getMinTime
long getMinTime()The minimum amount of time taken to complete one invocation of this operation since the beginning of this measurement. -
getTotalTime
long getTotalTime()This is the sum total of time taken to complete every invocation of this operation since the beginning of this measurement. Dividing totalTime by count will give you the average execution time for this operation.
-