BEA Systems, Inc.

Type-Safe Access to BEA WebLogic Server 9.0 MBeans (Deprecated)

(Methods marked with @since 9.0.0.0 are not available through the deprecated MBeanHome interface.)


weblogic.management.runtime
Interface EntityCacheRuntimeMBean

All Superinterfaces:
DynamicMBean, MBeanRegistration, NotificationBroadcaster, weblogic.management.runtime.RuntimeMBean, weblogic.management.WebLogicMBean
All Known Subinterfaces:
EntityCacheCumulativeRuntimeMBean, EntityCacheCurrentStateRuntimeMBean

public interface EntityCacheRuntimeMBean
extends weblogic.management.runtime.RuntimeMBean

This class is used for monitoring an XML Cache.

Deprecation of MBeanHome and Type-Safe Interfaces

This is a type-safe interface for a WebLogic Server MBean, which you can import into your client classes and access through weblogic.management.MBeanHome. As of 9.0, the MBeanHome interface and all type-safe interfaces for WebLogic Server MBeans are deprecated. Instead, client classes that interact with WebLogic Server MBeans should use standard JMX design patterns in which clients use the javax.management.MBeanServerConnection interface to discover MBeans, attributes, and attribute types at runtime. For more information, see "Developing Manageable Applications with JMX" on http://www.oracle.com/technology/documentation/index.html.

Copyright © 2005 BEA Systems, Inc. All Rights Reserved.

Method Summary
 double getAvgPercentPersistent()
          Provides the current average percentage of entries in the entity cache that have been persisted to the disk cache.
 double getAvgPercentTransient()
          Provides the current average percentage of entries in the entity cache that are transient, or have not been persisted.
 double getAvgPerEntryDiskSize()
          Provides the current average size of the entries in the entity disk cache.
 double getAvgPerEntryMemorySize()
          Provides the current average size of the entries in the entity memory cache.
 double getAvgTimeout()
          Provides the average amount of time that the entity cache has timed out when trying to retrieve an entity.
 long getMaxEntryMemorySize()
          Provides the current maximum size of the entries in the entity memory cache.
 double getMaxEntryTimeout()
          Provides the largest timeout value for any current entry in the entity cache.
 long getMinEntryMemorySize()
          Provides the current minimum size of the entries in the entity memory cache.
 double getMinEntryTimeout()
          Provides the smallest timeout value for any current entry in the entity cache.
 long getTotalCurrentEntries()
          Provides a count of the total current number of entries in the entity cache.
 long getTotalPersistentCurrentEntries()
          Provides a count of the total current number of entries in the cache that have been persisted to disk.
 long getTotalTransientCurrentEntries()
          Provides a count of the total current number of transient (not yet persisted to disk) entries in the entity cache.
 
Methods inherited from interface weblogic.management.WebLogicMBean
getMBeanInfo, getName, getObjectName, getParent, getType, isCachingDisabled, isRegistered, setName, setParent
 
Methods inherited from interface javax.management.DynamicMBean
getAttribute, getAttributes, invoke, setAttribute, setAttributes
 
Methods inherited from interface javax.management.MBeanRegistration
postDeregister, postRegister, preDeregister, preRegister
 
Methods inherited from interface javax.management.NotificationBroadcaster
addNotificationListener, getNotificationInfo, removeNotificationListener
 

Method Detail

getAvgPercentPersistent

public double getAvgPercentPersistent()

Provides the current average percentage of entries in the entity cache that have been persisted to the disk cache.

Returns current average percentage of entries in the entity cache that have been persisted to the disk cache.

Returns:
The avgPercentPersistent value

getAvgPercentTransient

public double getAvgPercentTransient()

Provides the current average percentage of entries in the entity cache that are transient, or have not been persisted.

Returns current average percentage of entries in the entity cache that are transient, or have not been persisted.

Returns:
The avgPercentTransient value

getAvgPerEntryDiskSize

public double getAvgPerEntryDiskSize()

Provides the current average size of the entries in the entity disk cache.

Returns the current average size of the entries in the entity disk cache.

Returns:
The avgPerEntryDiskSize value

getAvgPerEntryMemorySize

public double getAvgPerEntryMemorySize()

Provides the current average size of the entries in the entity memory cache.

Returns the current average size of the entries in the entity memory cache.

Returns:
The avgPerEntryMemorySize value

getAvgTimeout

public double getAvgTimeout()

Provides the average amount of time that the entity cache has timed out when trying to retrieve an entity.

Returns the average amount of time that the entity cache has timed out when trying to retrieve an entity.

Returns:
The avgTimeout value

getMaxEntryMemorySize

public long getMaxEntryMemorySize()

Provides the current maximum size of the entries in the entity memory cache.

Returns the current maximum size of the entries in the entity memory cache.

Returns:
The maxEntryMemorySize value

getMaxEntryTimeout

public double getMaxEntryTimeout()

Provides the largest timeout value for any current entry in the entity cache.

Returns the largest timeout value for any current entry in the entity cache.

Returns:
The maxEntryTimeout value

getMinEntryMemorySize

public long getMinEntryMemorySize()

Provides the current minimum size of the entries in the entity memory cache.

Returns the current minimum size of the entries in the entity memory cache.

Returns:
The minEntryMemorySize value

getMinEntryTimeout

public double getMinEntryTimeout()

Provides the smallest timeout value for any current entry in the entity cache.

Returns the smallest timeout value for any current entry in the entity cache.

Returns:
The minEntryTimeout value

getTotalCurrentEntries

public long getTotalCurrentEntries()

Provides a count of the total current number of entries in the entity cache.

Returns the total current number of entries in the entity cache.

Returns:
The totalCurrentEntries value

getTotalPersistentCurrentEntries

public long getTotalPersistentCurrentEntries()

Provides a count of the total current number of entries in the cache that have been persisted to disk.

Returns the total current number of entries in the cache that have been persisted to disk.

Returns:
The totalPersistentCurrentEntries value

getTotalTransientCurrentEntries

public long getTotalTransientCurrentEntries()

Provides a count of the total current number of transient (not yet persisted to disk) entries in the entity cache.

Returns the total current number of transient entries in the entity cache.

Returns:
The totalTransientCurrentEntries value

Documentation is available at
http://download.oracle.com/docs/cd/E13222_01/wls/docs90
Copyright 2005 BEA Systems Inc.