Methods Summary |
---|
public javax.management.j2ee.statistics.CountStatistic | getExecutionTime()Returns the time spent during the last successful/unsuccessful attempt to execute the operation, as a CountStatistic.
The time spent is generally an indication of the system load/processing time.
|
public javax.management.j2ee.statistics.TimeStatistic | getMethodStatistic()Returns the statistics of the method invocation as an instance of TimeStatistic.
Note that it returns the number of times the operation called, the total time
that was spent during the invocation and so on. All the calculations of the
statistic are being done over time.
|
public javax.management.j2ee.statistics.CountStatistic | getTotalNumErrors()Returns the total number of errors as a CountStatistic. It is upto the method
implementor to characterize what an error is. Generally if an operation results in
an exception, this count will increment by one.
|
public javax.management.j2ee.statistics.CountStatistic | getTotalNumSuccess()Returns the total number of successful runs, as a CountStatistic. It is upto the method
implementor to characterize what a successful run is. Generally if an operation returns
normally, this count will increment by one.
|