Uses of Class
org.apache.jcs.engine.control.CompositeCache

Packages that use CompositeCache
org.apache.jcs Contains the class JCS which provides a simple interface for clients to use JCS. 
org.apache.jcs.access Contains classes for accessing the cache. 
org.apache.jcs.admin.servlet   
org.apache.jcs.auxiliary Root package for auxiliary caches. 
org.apache.jcs.auxiliary.disk.hsql A disk cache using Hypersonic SQL to serialize the contained objects. 
org.apache.jcs.auxiliary.disk.indexed   
org.apache.jcs.auxiliary.disk.jisp Disk cache implemented with the Java Indexed Serialization Package, which allows serialization of objects to B-Tree indexed tables on disk. 
org.apache.jcs.auxiliary.lateral Root package for the lateral cache family. 
org.apache.jcs.auxiliary.lateral.socket.tcp   
org.apache.jcs.auxiliary.remote Root package for the remote auxiliary cache. 
org.apache.jcs.auxiliary.remote.server   
org.apache.jcs.engine.control The primary cache classes and the hub. 
org.apache.jcs.engine.memory Parent package for memory type plugins. 
org.apache.jcs.engine.memory.behavior   
org.apache.jcs.engine.memory.lru The primary memory plugin using a 'least recently used' removal policy. 
org.apache.jcs.engine.memory.mru A memory plugin implemented using a 'most recently used' removal policy. 
 

Uses of CompositeCache in org.apache.jcs
 

Constructors in org.apache.jcs with parameters of type CompositeCache
JCS(CompositeCache cacheControl)
          Protected constructor for use by the static factory methods.
 

Uses of CompositeCache in org.apache.jcs.access
 

Fields in org.apache.jcs.access declared as CompositeCache
protected  CompositeCache CacheAccess.cacheControl
          Cache that a given instance of this class provides access to.
 

Constructors in org.apache.jcs.access with parameters of type CompositeCache
GroupCacheAccess(CompositeCache cacheControl)
          Constructor for the GroupCacheAccess object
CacheAccess(CompositeCache cacheControl)
          Constructor for the CacheAccess object.
 

Uses of CompositeCache in org.apache.jcs.admin.servlet
 

Fields in org.apache.jcs.admin.servlet declared as CompositeCache
(package private)  CompositeCache JCSAdminServlet.CacheRegionInfo.cache
           
 

Methods in org.apache.jcs.admin.servlet that return CompositeCache
 CompositeCache JCSAdminServlet.CacheRegionInfo.getCache()
           
 

Methods in org.apache.jcs.admin.servlet with parameters of type CompositeCache
 int JCSAdminServlet.getByteCount(CompositeCache cache)
           
 

Uses of CompositeCache in org.apache.jcs.auxiliary
 

Methods in org.apache.jcs.auxiliary with parameters of type CompositeCache
 AuxiliaryCache AuxiliaryCacheFactory.createCache(AuxiliaryCacheAttributes attr, CompositeCache cache)
           
 

Uses of CompositeCache in org.apache.jcs.auxiliary.disk.hsql
 

Methods in org.apache.jcs.auxiliary.disk.hsql with parameters of type CompositeCache
 AuxiliaryCache HSQLCacheFactory.createCache(AuxiliaryCacheAttributes iaca, CompositeCache cache)
          Description of the Method
 

Uses of CompositeCache in org.apache.jcs.auxiliary.disk.indexed
 

Methods in org.apache.jcs.auxiliary.disk.indexed with parameters of type CompositeCache
 AuxiliaryCache IndexedDiskCacheFactory.createCache(AuxiliaryCacheAttributes iaca, CompositeCache cache)
          Description of the Method
 

Uses of CompositeCache in org.apache.jcs.auxiliary.disk.jisp
 

Methods in org.apache.jcs.auxiliary.disk.jisp with parameters of type CompositeCache
 AuxiliaryCache JISPCacheFactory.createCache(AuxiliaryCacheAttributes iaca, CompositeCache cache)
          Description of the Method
 

Uses of CompositeCache in org.apache.jcs.auxiliary.lateral
 

Methods in org.apache.jcs.auxiliary.lateral with parameters of type CompositeCache
 AuxiliaryCache LateralCacheFactory.createCache(AuxiliaryCacheAttributes iaca, CompositeCache cache)
          Interface method.
 

Uses of CompositeCache in org.apache.jcs.auxiliary.lateral.socket.tcp
 

Methods in org.apache.jcs.auxiliary.lateral.socket.tcp that return CompositeCache
protected  CompositeCache LateralTCPListener.getCache(java.lang.String name)
          Gets the cacheManager attribute of the LateralCacheTCPListener object
 

Uses of CompositeCache in org.apache.jcs.auxiliary.remote
 

Methods in org.apache.jcs.auxiliary.remote with parameters of type CompositeCache
 AuxiliaryCache RemoteCacheFactory.createCache(AuxiliaryCacheAttributes iaca, CompositeCache cache)
          Interface method.
 

Uses of CompositeCache in org.apache.jcs.auxiliary.remote.server
 

Methods in org.apache.jcs.auxiliary.remote.server with parameters of type CompositeCache
 AuxiliaryCache RemoteCacheClusterFactory.createCache(AuxiliaryCacheAttributes iaca, CompositeCache cache)
          Interface method.
 

Uses of CompositeCache in org.apache.jcs.engine.control
 

Methods in org.apache.jcs.engine.control that return CompositeCache
protected  CompositeCache CompositeCacheConfigurator.parseRegion(java.util.Properties props, java.lang.String regName, java.lang.String value)
          Create cache region.
protected  CompositeCache CompositeCacheConfigurator.parseRegion(java.util.Properties props, java.lang.String regName, java.lang.String value, ICompositeCacheAttributes cca)
           
protected  CompositeCache CompositeCacheConfigurator.parseRegion(java.util.Properties props, java.lang.String regName, java.lang.String value, ICompositeCacheAttributes cca, java.lang.String regionPrefix)
           
 CompositeCache CompositeCacheManager.getCache(java.lang.String cacheName)
          Gets the cache attribute of the CacheHub object
 CompositeCache CompositeCacheManager.getCache(java.lang.String cacheName, ICompositeCacheAttributes cattr)
          Gets the cache attribute of the CacheHub object
 CompositeCache CompositeCacheManager.getCache(java.lang.String cacheName, ICompositeCacheAttributes cattr, IElementAttributes attr)
          Gets the cache attribute of the CacheHub object
 CompositeCache CompositeCacheManager.getCache(ICompositeCacheAttributes cattr)
          Gets the cache attribute of the CacheHub object
 CompositeCache CompositeCacheManager.getCache(ICompositeCacheAttributes cattr, IElementAttributes attr)
          If the cache is created the CacheAttributes and the element Attributes will be ignored.
 

Methods in org.apache.jcs.engine.control with parameters of type CompositeCache
protected  AuxiliaryCache CompositeCacheConfigurator.parseAuxiliary(CompositeCache cache, java.util.Properties props, java.lang.String auxName, java.lang.String regName)
          Get an aux cache for the listed aux for a region.
 

Uses of CompositeCache in org.apache.jcs.engine.memory
 

Fields in org.apache.jcs.engine.memory declared as CompositeCache
protected  CompositeCache AbstractMemoryCache.cache
          The cache region this store is associated with
 

Methods in org.apache.jcs.engine.memory that return CompositeCache
 CompositeCache AbstractMemoryCache.getCompositeCache()
          Gets the cache hub / region taht the MemoryCache is used by
 CompositeCache MemoryCache.getCompositeCache()
          Gets the cache hub / region taht the MemoryCache is used by
 

Methods in org.apache.jcs.engine.memory with parameters of type CompositeCache
 void AbstractMemoryCache.initialize(CompositeCache hub)
          For post reflection creation initialization
 void MemoryCache.initialize(CompositeCache cache)
          Initialize the memory cache
 

Uses of CompositeCache in org.apache.jcs.engine.memory.behavior
 

Methods in org.apache.jcs.engine.memory.behavior that return CompositeCache
 CompositeCache IMemoryCache.getCompositeCache()
          Gets the cache hub / region taht the MemoryCache is used by
 

Methods in org.apache.jcs.engine.memory.behavior with parameters of type CompositeCache
 void IMemoryCache.initialize(java.lang.String cacheName, ICompositeCacheAttributes cattr, CompositeCache cache)
          Description of the Method
 

Uses of CompositeCache in org.apache.jcs.engine.memory.lru
 

Methods in org.apache.jcs.engine.memory.lru with parameters of type CompositeCache
 void LRUMemoryCache.initialize(CompositeCache hub)
          For post reflection creation initialization
 

Uses of CompositeCache in org.apache.jcs.engine.memory.mru
 

Methods in org.apache.jcs.engine.memory.mru with parameters of type CompositeCache
 void MRUMemoryCache.initialize(CompositeCache hub)
          For post reflection creation initialization