FileDocCategorySizeDatePackage
TimeStatistic.javaAPI DocGlassfish v2 API2815Fri May 04 22:34:04 BST 2007javax.management.j2ee.statistics

TimeStatistic

public interface TimeStatistic implements Statistic
Specifies standard timing measurements.

Fields Summary
Constructors Summary
Methods Summary
public longgetCount()
Number of times the operation was invoked since the beginning of this measurement.

public longgetMaxTime()
The maximum amount of time taken to complete one invocation of this operation since the beginning of this measurement.

public longgetMinTime()
The minimum amount of time taken to complete one invocation of this operation since the beginning of this measurement.

public longgetTotalTime()
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.