Uses of Interface
org.infinispan.loader.CacheStore

Packages that use CacheStore
org.infinispan.loader   
org.infinispan.loader.bdbje   
org.infinispan.loader.bucket   
org.infinispan.loader.decorators   
org.infinispan.loader.file   
org.infinispan.loader.jdbc.binary   
org.infinispan.loader.jdbc.mixed   
org.infinispan.loader.jdbc.stringbased   
org.infinispan.loader.s3   
 

Uses of CacheStore in org.infinispan.loader
 

Classes in org.infinispan.loader that implement CacheStore
 class AbstractCacheStore
          An abstract CacheStore that holds common implementations for some methods
 class LockSupportCacheStore
          This class extends AbstractCacheStore adding lock support for consistently acceessing stored data.
 

Methods in org.infinispan.loader that return CacheStore
 CacheStore CacheLoaderManagerImpl.getCacheStore()
           
 CacheStore CacheLoaderManager.getCacheStore()
           
 

Uses of CacheStore in org.infinispan.loader.bdbje
 

Classes in org.infinispan.loader.bdbje that implement CacheStore
 class BdbjeCacheStore
          An Oracle SleepyCat JE implementation of a CacheStore.
 

Constructors in org.infinispan.loader.bdbje with parameters of type CacheStore
ModificationsTransactionWorker(CacheStore store, List<? extends Modification> mods)
          Associates Modifications that will be applied to the supplied CacheStore
 

Uses of CacheStore in org.infinispan.loader.bucket
 

Classes in org.infinispan.loader.bucket that implement CacheStore
 class BucketBasedCacheStore
          Base class for cache store that want to use the 'buckets approach' for storing data.
 

Uses of CacheStore in org.infinispan.loader.decorators
 

Classes in org.infinispan.loader.decorators that implement CacheStore
 class AbstractDelegatingStore
          Simple delegate that delegates all calls.
 class AsyncStore
          The AsyncStore is a delegating CacheStore that extends AbstractDelegatingStore, overriding methods to that should not just delegate the operation to the underlying store.
 class ChainingCacheStore
          A chaining cache loader that allows us to configure > 1 cache loader.
 class ReadOnlyStore
          A decorator that makes the underlying store a CacheLoader, i.e., suppressing all write methods.
 class SingletonStore
          SingletonStore is a delegating cache store used for situations when only one instance should interact with the underlying store.
 

Methods in org.infinispan.loader.decorators that return CacheStore
 CacheStore AbstractDelegatingStore.getDelegate()
           
 

Methods in org.infinispan.loader.decorators that return types with arguments of type CacheStore
 LinkedHashMap<CacheStore,CacheLoaderConfig> ChainingCacheStore.getStores()
           
 

Methods in org.infinispan.loader.decorators with parameters of type CacheStore
 void AbstractDelegatingStore.setDelegate(CacheStore delegate)
           
 

Constructors in org.infinispan.loader.decorators with parameters of type CacheStore
AbstractDelegatingStore(CacheStore delegate)
           
AsyncStore(CacheStore cacheStore, AsyncStoreConfig asyncStoreConfig)
           
ReadOnlyStore(CacheStore delegate)
           
SingletonStore(CacheStore delegate, Cache cache, SingletonStoreConfig config)
           
 

Uses of CacheStore in org.infinispan.loader.file
 

Classes in org.infinispan.loader.file that implement CacheStore
 class FileCacheStore
          A filesystem-based implementation of a BucketBasedCacheStore.
 

Uses of CacheStore in org.infinispan.loader.jdbc.binary
 

Classes in org.infinispan.loader.jdbc.binary that implement CacheStore
 class JdbcBinaryCacheStore
          BucketBasedCacheStore implementation that will store all the buckets as rows in database, each row coresponding to a bucket.
 

Uses of CacheStore in org.infinispan.loader.jdbc.mixed
 

Classes in org.infinispan.loader.jdbc.mixed that implement CacheStore
 class JdbcMixedCacheStore
          Cache store that combines functionality of JdbcBinaryCacheStore and JdbcStringBasedCacheStore.
 

Uses of CacheStore in org.infinispan.loader.jdbc.stringbased
 

Classes in org.infinispan.loader.jdbc.stringbased that implement CacheStore
 class JdbcStringBasedCacheStore
          CacheStore implementation that stores the entries in a database.
 

Uses of CacheStore in org.infinispan.loader.s3
 

Classes in org.infinispan.loader.s3 that implement CacheStore
 class S3CacheStore
          A TODO link implementation of a BucketBasedCacheStore.
 



Copyright © 2009 JBoss, a division of Red Hat. All Rights Reserved.