org.tinygroup.jspengine.appserv.util.cache.mbeans
接口 JmxBaseCacheMBean

所有已知子接口:
JmxBoundedMultiLruCacheMBean, JmxLruCacheMBean, JmxMultiLruCacheMBean
所有已知实现类:
JmxBaseCache, JmxBoundedMultiLruCache, JmxLruCache, JmxMultiLruCache

public interface JmxBaseCacheMBean

This interface defines the attributes exposed by the BaseCache MBean

作者:
Krishnamohan Meduri (Krishna.Meduri@Sun.com)

方法摘要
 Integer getAddCount()
          Returns the number of times new entries have been added
 Integer getEntryCount()
          Returns current number of Entries
 Integer getHitCount()
          Return the number of cache hits
 Integer getMaxEntries()
          Returns maximum possible number of entries
 Integer getMissCount()
          Returns the number of cache misses
 String getName()
          Returns a unique identifier for this MBean inside the domain
 Integer getOverflowCount()
          Returns the number of times that an overflow has occurred
 Integer getRefreshCount()
          Returns the number of values that have been refreshed (replaced with a new value in an existing extry)
 Integer getRemovalCount()
          Returns the number of entries that have been removed
 Integer getTableSize()
          Returns current number of buckets
 Integer getThreshold()
          Returns threshold.
 

方法详细信息

getName

String getName()
Returns a unique identifier for this MBean inside the domain


getMaxEntries

Integer getMaxEntries()
Returns maximum possible number of entries


getThreshold

Integer getThreshold()
Returns threshold. This when reached, an overflow will occur


getTableSize

Integer getTableSize()
Returns current number of buckets


getEntryCount

Integer getEntryCount()
Returns current number of Entries


getHitCount

Integer getHitCount()
Return the number of cache hits


getMissCount

Integer getMissCount()
Returns the number of cache misses


getRemovalCount

Integer getRemovalCount()
Returns the number of entries that have been removed


getRefreshCount

Integer getRefreshCount()
Returns the number of values that have been refreshed (replaced with a new value in an existing extry)


getOverflowCount

Integer getOverflowCount()
Returns the number of times that an overflow has occurred


getAddCount

Integer getAddCount()
Returns the number of times new entries have been added



Copyright © 2006–2014 开源组织. All rights reserved.