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.disk The primary disk auxiliary. 
org.apache.jcs.auxiliary.disk.block   
org.apache.jcs.auxiliary.disk.file   
org.apache.jcs.auxiliary.disk.indexed   
org.apache.jcs.auxiliary.disk.jdbc   
org.apache.jcs.auxiliary.disk.jdbc.mysql   
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.behavior   
org.apache.jcs.auxiliary.remote.http.client   
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<K extends Serializable,V extends Serializable>
          Tag interface for auxiliary caches.
 

Classes in org.apache.jcs.auxiliary that implement ICache
 class AbstractAuxiliaryCache<K extends Serializable,V extends Serializable>
          This holds convenience methods used by most auxiliary caches.
 class AbstractAuxiliaryCacheEventLogging<K extends Serializable,V extends Serializable>
          All ICacheEvents are defined as final.
 

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

Classes in org.apache.jcs.auxiliary.disk that implement ICache
 class AbstractDiskCache<K extends Serializable,V extends Serializable>
          Abstract class providing a base implementation of a disk cache, which can be easily extended to implement a disk cache for a specific persistence mechanism.
 

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

Classes in org.apache.jcs.auxiliary.disk.block that implement ICache
 class BlockDiskCache<K extends Serializable,V extends Serializable>
          There is one BlockDiskCache per region.
 

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

Classes in org.apache.jcs.auxiliary.disk.file that implement ICache
 class FileDiskCache<K extends Serializable,V extends Serializable>
          This disk cache writes each item to a separate file.
 

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

Classes in org.apache.jcs.auxiliary.disk.indexed that implement ICache
 class IndexedDiskCache<K extends Serializable,V extends Serializable>
          Disk cache that uses a RandomAccessFile with keys stored in memory.
 

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

Classes in org.apache.jcs.auxiliary.disk.jdbc that implement ICache
 class JDBCDiskCache<K extends Serializable,V extends Serializable>
          This is the jdbc disk cache plugin.
 

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

Classes in org.apache.jcs.auxiliary.disk.jdbc.mysql that implement ICache
 class MySQLDiskCache<K extends Serializable,V extends Serializable>
          The MySQLDiskCache extends the core JDBCDiskCache.
 

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

Classes in org.apache.jcs.auxiliary.lateral that implement ICache
 class LateralCache<K extends Serializable,V extends Serializable>
          Lateral distributor.
 class LateralCacheNoWait<K extends Serializable,V extends Serializable>
          Used to queue up update requests to the underlying cache.
 class LateralCacheNoWaitFacade<K extends Serializable,V extends Serializable>
          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 AbstractRemoteAuxiliaryCache<K extends Serializable,V extends Serializable>
          Abstract base for remote caches.
 class AbstractRemoteCacheNoWaitFacade<K extends Serializable,V extends Serializable>
          An abstract base for the No Wait Facade.
 class RemoteCache<K extends Serializable,V extends Serializable>
          Client proxy for an RMI remote cache.
 class RemoteCacheNoWait<K extends Serializable,V extends Serializable>
          The RemoteCacheNoWait wraps the RemoteCacheClient.
 class RemoteCacheNoWaitFacade<K extends Serializable,V extends Serializable>
          Used to provide access to multiple services under nowait protection.
 

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

Subinterfaces of ICache in org.apache.jcs.auxiliary.remote.behavior
 interface IRemoteCacheClient<K extends Serializable,V extends Serializable>
          This defines the behavior expected of a remote cache client.
 

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

Classes in org.apache.jcs.auxiliary.remote.http.client that implement ICache
 class RemoteHttpCache<K extends Serializable,V extends Serializable>
          This uses an http client as the service.
 

Uses of ICache in org.apache.jcs.engine
 

Fields in org.apache.jcs.engine declared as ICache
 ICache<K,V> CacheListeners.cache
          The cache using the queue.
 

Constructors in org.apache.jcs.engine with parameters of type ICache
CacheAdaptor(ICache<K,V> cache)
          Constructor for the CacheAdaptor object
CacheListeners(ICache<K,V> 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
<K extends Serializable,V extends Serializable>
ICache<K,V>
ICacheManager.getCache(String cacheName)
          methods to get a cache region from a manager
 

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

Classes in org.apache.jcs.engine.control that implement ICache
 class CompositeCache<K extends Serializable,V extends Serializable>
          This is the primary hub for a single cache/region.
 

Fields in org.apache.jcs.engine.control with type parameters of type ICache
protected  Hashtable<String,ICache<? extends Serializable,? extends Serializable>> CompositeCacheManager.caches
          Caches managed by this cache manager
protected  Hashtable<String,ICache<? extends Serializable,? extends Serializable>> CompositeCacheManager.systemCaches
          Internal system caches for this cache manager
 



Copyright © 2002-2013 The Apache Software Foundation. All Rights Reserved.