ServletTimeStatisticImplpublic class ServletTimeStatisticImpl extends com.sun.enterprise.admin.monitor.stats.TimeStatisticImpl
Fields Summary |
---|
private com.sun.enterprise.web.monitor.PwcServletStats | servletStats |
Methods Summary |
---|
public long | getCount()Returns the number of times an operation was invoked
return servletStats.getRequestCount();
| public long | getMaxTime()Returns the maximum amount of time that it took for one invocation of an
operation, since measurement started.
return servletStats.getMaxTimeMillis();
| public long | getMinTime()Returns the minimum amount of time that it took for one invocation of an
operation, since measurement started.
return servletStats.getMinTimeMillis();
| public long | getTotalTime()Returns the amount of time that it took for all invocations,
since measurement started.
return servletStats.getProcessingTimeMillis();
|
|