Package net.rubyeye.xmemcached.monitor
Interface StatisticsHandlerMBean
-
- All Known Implementing Classes:
StatisticsHandler
public interface StatisticsHandlerMBean
Statistics MBean for jmx
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description long
getAddCount()
long
getAppendCount()
long
getCASCount()
long
getDecrCount()
long
getDeleteCount()
long
getGetHitCount()
long
getGetMissCount()
long
getIncrCount()
long
getMultiGetCount()
long
getMultiGetsCount()
long
getPrependCount()
long
getReplaceCount()
long
getSetCount()
boolean
isStatistics()
void
resetStats()
Reset the statisticsvoid
setStatistics(boolean statistics)
-
-
-
Method Detail
-
getGetHitCount
long getGetHitCount()
-
getGetMissCount
long getGetMissCount()
-
getSetCount
long getSetCount()
-
getAppendCount
long getAppendCount()
-
getPrependCount
long getPrependCount()
-
getCASCount
long getCASCount()
-
getDeleteCount
long getDeleteCount()
-
getIncrCount
long getIncrCount()
-
getDecrCount
long getDecrCount()
-
getMultiGetCount
long getMultiGetCount()
-
getMultiGetsCount
long getMultiGetsCount()
-
getAddCount
long getAddCount()
-
getReplaceCount
long getReplaceCount()
-
isStatistics
boolean isStatistics()
-
setStatistics
void setStatistics(boolean statistics)
-
resetStats
void resetStats()
Reset the statistics- Since:
- 1.3.9
-
-