Interface MutableTimeStatistic
-
- All Superinterfaces:
MutableStatistic,Serializable
- All Known Implementing Classes:
MutableTimeStatisticImpl
public interface MutableTimeStatistic extends MutableStatistic
Provides mutable nature to theTimeStatistic. Like other MutableStatistic interfaces, it does have the state to calculate the specific statistical data inTimeStatistic. Unlike other mutable statistics though, in this interface there is some consideration of a sequence. Once an instance of this interface is created, subsequent call toincrementCount(long)has a twofold effect:- Increments the count for number of times the operation is executed by 1
- Keeps a count of maximum/minimum/total execution time
- Since:
- S1AS8.0
- Version:
- $Revision: 1.2 $
- Author:
- Kedar Mhaswade
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidincrementCount(long currentExecutionTimeMillis)Increments the count for number of times an operation is called by 1 and processes the given parameter in a certain manner.-
Methods inherited from interface com.sun.enterprise.admin.monitor.stats.MutableStatistic
modifiableView, reset, unmodifiableView
-
-