Oracle Fusion Middleware
Oracle WebLogic Server MBean Javadoc
12c Release 1 (12.1.1)

Part Number E24395-02

weblogic.management.runtime
Interface EntityCacheRuntimeMBean

All Known Subinterfaces:
EntityCacheCumulativeRuntimeMBean, EntityCacheCurrentStateRuntimeMBean

public interface EntityCacheRuntimeMBean

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/products/weblogic/index.html.


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.
 

Method Detail

getTotalCurrentEntries

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

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

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

getAvgPercentTransient

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

getAvgPercentPersistent

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

getAvgTimeout

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

getMinEntryTimeout

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

getMaxEntryTimeout

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

getAvgPerEntryMemorySize

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

getMaxEntryMemorySize

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

getMinEntryMemorySize

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

getAvgPerEntryDiskSize

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

Copyright 1996, 2011, Oracle and/or its affiliates. All rights reserved. Oracle is a registered trademark of Oracle Corporation and/or its affiliates. Other names may be trademarks of their respective owners.

Oracle Fusion Middleware
Oracle WebLogic Server MBean Javadoc
12c Release 1 (12.1.1)

Part Number E24395-02