Uses of Interface
org.apache.jcs.engine.behavior.ICache

Packages that use ICache
org.apache.jcs.auxiliary Root package for auxiliary caches. 
org.apache.jcs.auxiliary.behavior Auxilliary cache interfaces. 
org.apache.jcs.auxiliary.disk The primary disk auxiliary. 
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.remote Root package for the remote auxiliary cache. 
org.apache.jcs.auxiliary.remote.server   
org.apache.jcs.engine Interfaces used by the core and the auxiliary caches. 
org.apache.jcs.engine.behavior Interfaces used by the core and the auxiliary caches. 
org.apache.jcs.engine.control The primary cache classes and the hub. 
 

Uses of ICache in org.apache.jcs.auxiliary
 

Subinterfaces of ICache in org.apache.jcs.auxiliary
 interface AuxiliaryCache
          Tag interface for auxiliary caches.
 

Uses of ICache in org.apache.jcs.auxiliary.behavior
 

Methods in org.apache.jcs.auxiliary.behavior that return ICache
 ICache IAuxiliaryCacheFactory.createCache(IAuxiliaryCacheAttributes iaca)
          Description of the Method
 

Uses of ICache in org.apache.jcs.auxiliary.disk
 

Classes in org.apache.jcs.auxiliary.disk that implement ICache
 class AbstractDiskCache
          Abstract class providing a base implementation of a disk cache, which can be easily extended to implement a disk cache for a specific perstistence mechanism.
 

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

Classes in org.apache.jcs.auxiliary.disk.hsql that implement ICache
 class HSQLCache
          HSQLDB Based Local Persistence.
 

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

Classes in org.apache.jcs.auxiliary.disk.indexed that implement ICache
 class IndexedDiskCache
          Disk cache that uses a RandomAccessFile with keys stored in memory
 

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

Classes in org.apache.jcs.auxiliary.disk.jisp that implement ICache
 class JISPCache
          JISP disk cache implementation.
 

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

Classes in org.apache.jcs.auxiliary.lateral that implement ICache
 class LateralCache
          Lateral distributor.
 class LateralCacheNoWait
          Used to queue up update requests to the underlying cache.
 class LateralCacheNoWaitFacade
          Used to provide access to multiple services under nowait protection.
 

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

Classes in org.apache.jcs.auxiliary.remote that implement ICache
 class RemoteCache
          Client proxy for an RMI remote cache.
 class RemoteCacheNoWait
          Used to queue up update requests to the underlying cache.
 class RemoteCacheNoWaitFacade
          Used to provide access to multiple services under nowait protection.
 

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

Methods in org.apache.jcs.auxiliary.remote.server that return ICache
 ICache RemoteCacheClusterManager.getCache(java.lang.String cacheName)
          Returns a remote cache for the given cache name.
 ICache RemoteCacheClusterManager.getCache(IRemoteCacheAttributes cattr)
          Gets the cache attribute of the RemoteCacheClusterManager object
 

Uses of ICache in org.apache.jcs.engine
 

Fields in org.apache.jcs.engine declared as ICache
 ICache CacheDescriptor.cache
          Description of the Field
private  ICache CacheAdaptor.cache
           
 ICache CacheListeners.cache
          Description of the Field
 

Constructors in org.apache.jcs.engine with parameters of type ICache
CacheDescriptor(ICache cache)
          Constructor for the CacheDescriptor object
CacheAdaptor(ICache cache)
          Constructor for the CacheAdaptor object
CacheListeners(ICache cache)
          Constructs with the given cache.
 

Uses of ICache in org.apache.jcs.engine.behavior
 

Methods in org.apache.jcs.engine.behavior that return ICache
 ICache ICacheManager.getCache(java.lang.String cacheName)
          methods to get a cache region from a maanger
 

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

Classes in org.apache.jcs.engine.control that implement ICache
 class CompositeCache
          This is the primary hub for a single cache/region.