javax.management.DynamicMBean
, javax.management.MBeanRegistration
, javax.management.NotificationBroadcaster
, RuntimeMBean
, WebLogicMBean
public interface EJBCacheRuntimeMBean extends RuntimeMBean
Modifier and Type | Method | Description |
---|---|---|
long |
getActivationCount() |
Provides a count of the total number of beans from this EJB Home
that have been activated.
|
long |
getCacheAccessCount() |
Provides a count of the total number of attempts to access a
bean from the cache.
|
int |
getCachedBeansCurrentCount() |
Provides a count of the total number of beans from this EJB Home
currently in the EJB cache.
|
long |
getCacheHitCount() |
Deprecated.
28-Aug-2002.
|
long |
getCacheMissCount() |
Provides a count of the total number of times an attempt to
access a bean from the cache failed.
|
long |
getPassivationCount() |
Provides a count of the total number of beans from this EJB Home
that have been passivated.
|
void |
reInitializeCacheAndPools() |
Instructs the cache to initialize itself all of its associated pools
to their configured initial sizes.
|
getAttribute, getAttributes, invoke, setAttribute, setAttributes
postDeregister, postRegister, preRegister
addNotificationListener, getNotificationInfo, removeNotificationListener
addPropertyChangeListener, removePropertyChangeListener
getMBeanInfo, getName, getObjectName, getParent, getType, isCachingDisabled, isRegistered, setName, setParent
int getCachedBeansCurrentCount()
Provides a count of the total number of beans from this EJB Home currently in the EJB cache.
long getCacheAccessCount()
Provides a count of the total number of attempts to access a bean from the cache.
The sum of the Cache Hit Count and Cache Miss Count may not add up to the cacheAccessCount in a running server because these metrics are retrieved using multiple calls and the counts could change between the calls.
*@Deprecated long getCacheHitCount()
Provides a count of the total number of times an attempt to access a bean from the cache succeeded.
The sum of the Cache Hit Count and Cache Miss Count may not add up to the cacheAccessCount in a running server because these metrics are retrieved using multiple calls and the counts could change between the calls.
long getCacheMissCount()
Provides a count of the total number of times an attempt to access a bean from the cache failed.
The sum of the Cache Hit Count and Cache Miss Count may not add up to the cacheAccessCount in a running server because these metrics are retrieved using multiple calls and the counts could change between the calls.
long getActivationCount()
Provides a count of the total number of beans from this EJB Home that have been activated.
long getPassivationCount()
Provides a count of the total number of beans from this EJB Home that have been passivated.
void reInitializeCacheAndPools()
Instructs the cache to initialize itself all of its associated pools to their configured initial sizes.