Interface MutableCountStatistic
- All Superinterfaces:
MutableStatistic,Serializable
- All Known Implementing Classes:
MutableAverageRangeStatisticImpl,MutableBoundedRangeStatisticImpl,MutableCountStatisticImpl
An interface that imparts mutability to a
by the
virtue of extending MutableStatistic.
invalid reference
CountStatistic
- Since:
- S1AS8.0
- Version:
- 1.0
- Author:
- Kedar Mhaswade
-
Method Summary
Modifier and TypeMethodDescriptionvoidsetCount(long current) Provides the mutator to the only statistic in the implementing class that changes - Count.Methods inherited from interface com.sun.enterprise.admin.monitor.stats.MutableStatistic
modifiableView, reset, unmodifiableView
-
Method Details
-
setCount
void setCount(long current) Provides the mutator to the only statistic in the implementing class that changes - Count. It is expected that the count is monotonically increasing on a temporal scale.- Parameters:
current- long that specifies the value when measured (sampled).
-