Uses of Interface
org.jboss.cache.loader.CacheLoader

Packages that use CacheLoader
org.jboss.cache   
org.jboss.cache.interceptors   
org.jboss.cache.loader   
org.jboss.cache.loader.bdbje   
org.jboss.cache.loader.jdbm   
org.jboss.cache.loader.tcp   
 

Uses of CacheLoader in org.jboss.cache
 

Methods in org.jboss.cache that return CacheLoader
 CacheLoader TreeCacheMBean.getCacheLoader()
           
 CacheLoader TreeCache.getCacheLoader()
          Returns the underlying cache loader in use.
 

Methods in org.jboss.cache with parameters of type CacheLoader
 void TreeCacheMBean.setCacheLoader(CacheLoader loader)
          Deprecated.  
 void TreeCache.setCacheLoader(CacheLoader loader)
          Deprecated.  
 

Uses of CacheLoader in org.jboss.cache.interceptors
 

Fields in org.jboss.cache.interceptors declared as CacheLoader
protected  CacheLoader PassivationInterceptor.loader
           
protected  CacheLoader BaseCacheLoaderInterceptor.loader
           
 

Uses of CacheLoader in org.jboss.cache.loader
 

Subinterfaces of CacheLoader in org.jboss.cache.loader
 interface CacheLoaderAop
          Responsible for storing and retrieving objects to/from secondary storage.
 interface ExtendedCacheLoader
          Extends the CacheLoader interface by adding methods to support serialized transfer of a portion of a cache tree.
 

Classes in org.jboss.cache.loader that implement CacheLoader
 class AsyncCacheLoader
          The AsyncCacheLoader is a delegating cache loader that passes on all operations to an underlying CacheLoader.
 class AsyncExtendedCacheLoader
          Extends AsyncCacheLoader to supply additional ExtendedCacheLoader methods.
 class ChainingCacheLoader
          This decorator is used whenever more than one cache loader is configured.
 class ClusteredCacheLoader
          A cache loader that consults other members in the cluster for values.
 class DelegatingCacheLoader
          CacheLoader implementation which delegates to another TreeCache.
 class FileCacheLoader
          Simple file-based CacheLoader implementation.
 class FileExtendedCacheLoader
          Deprecated. FileCacheLoader now implements ExtendedCacheLoader so this class adds nothing to it and will be removed in 2.0.
 class JDBCCacheLoader
          JDBC CacheLoader implementation.
 class JDBCExtendedCacheLoader
          A A JDBCCacheLoader that implements ExtendedCacheLoader.
 class LocalDelegatingCacheLoader
          DelegatingCacheLoader implementation which delegates to a local (in the same VM) TreeCache.
 class RmiDelegatingCacheLoader
          DelegatingCacheLoader implementation which delegates to a remote (not in the same VM) TreeCache using the Java RMI mechanism.
 class RpcDelegatingCacheLoader
          DelegatingCacheLoader implementation which delegates to a remote (not in the same VM) TreeCache using JGroups' RPC mechanism.
 class SharedStoreCacheLoader
          CacheLoader proxy used only when multiple CacheLoaders in a cluster access the same underlying store (e.g.
 

Methods in org.jboss.cache.loader that return CacheLoader
 CacheLoader CacheLoaderManager.getCacheLoader()
          Returns the cache loader
 CacheLoader AsyncCacheLoader.getCacheLoader()
          Returns the delegate cache loader.
 

Methods in org.jboss.cache.loader with parameters of type CacheLoader
 void ChainingCacheLoader.addCacheLoader(CacheLoader l, CacheLoaderConfig.IndividualCacheLoaderConfig cfg)
          Adds a cache loader to the chain (always added at the end of the chain)
 void CacheLoaderManager.setCacheLoader(CacheLoader loader)
          Overrides generated cache loader with the one provided,for backward compat.
 

Constructors in org.jboss.cache.loader with parameters of type CacheLoader
AsyncCacheLoader(CacheLoader cacheLoader)
           
SharedStoreCacheLoader(CacheLoader loader, org.jgroups.Address local_addr, boolean coordinator)
           
 

Uses of CacheLoader in org.jboss.cache.loader.bdbje
 

Classes in org.jboss.cache.loader.bdbje that implement CacheLoader
 class BdbjeCacheLoader
          A persistent CacheLoader based on Berkeley DB Java Edition.
 

Uses of CacheLoader in org.jboss.cache.loader.jdbm
 

Classes in org.jboss.cache.loader.jdbm that implement CacheLoader
 class JdbmCacheLoader
          A persistent CacheLoader based on the JDBM project.
 

Uses of CacheLoader in org.jboss.cache.loader.tcp
 

Classes in org.jboss.cache.loader.tcp that implement CacheLoader
 class TcpDelegatingCacheLoader
          DelegatingCacheLoader implementation which delegates to a remote (not in the same VM) TreeCache using TCP/IP for communication.
 



Copyright © 1998-2005 JBoss Inc . All Rights Reserved.