Save This Page
Home » openjdk-7 » javax » management » j2ee » statistics » [javadoc | source]
javax.management.j2ee.statistics
public interface: TimeStatistic [javadoc | source]

All Implemented Interfaces:
    Statistic

Specifies standard timing measurements.
Method from javax.management.j2ee.statistics.TimeStatistic Summary:
getCount,   getMaxTime,   getMinTime,   getTotalTime
Method from javax.management.j2ee.statistics.TimeStatistic Detail:
 public long getCount()
    Number of times the operation was invoked since the beginning of this measurement.
 public long getMaxTime()
    The maximum amount of time taken to complete one invocation of this operation since the beginning of this measurement.
 public long getMinTime()
    The minimum amount of time taken to complete one invocation of this operation since the beginning of this measurement.
 public 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.