Infinispan Distribution 5.2.6.Final-redhat-2

Uses of Interface
org.infinispan.loaders.CacheLoader

Packages that use CacheLoader
org.infinispan.configuration.cache Classes related to eviction. 
org.infinispan.distexec.mapreduce   
org.infinispan.interceptors Infinispan is designed around a set of interceptors around a data container. 
org.infinispan.loaders This package contains loaders and stores, which are used for overflow or persistence. 
org.infinispan.loaders.bucket Abstract classes that use hashed buckets to store entries. 
org.infinispan.loaders.cluster A CacheLoader (not CacheStore) that polls other nodes in the cluster for state. 
org.infinispan.loaders.decorators This package contains loaders and stores, which are used for overflow or persistence. 
org.infinispan.loaders.file Simple filesystem-based CacheStore implementation. 
org.infinispan.loaders.jdbc.binary This JDBC CacheStore implementation is optimized for storing binary (non-String) keys in the cache. 
org.infinispan.loaders.jdbc.mixed This is a delegating CacheStore implementation that delegates either to a binary or String based JDBC cache store depending on the key used. 
org.infinispan.loaders.jdbc.stringbased This JDBC CacheStore implementation is optimized for storing String keys in the cache. 
org.infinispan.loaders.remote   
org.infinispan.lucene.cachestore   
 

Uses of CacheLoader in org.infinispan.configuration.cache
 

Methods in org.infinispan.configuration.cache that return CacheLoader
 CacheLoader LegacyLoaderConfiguration.cacheLoader()
           
 CacheLoader LoaderConfiguration.cacheStore()
           
 CacheLoader LegacyStoreConfiguration.cacheStore()
           
 

Methods in org.infinispan.configuration.cache with parameters of type CacheLoader
 LegacyLoaderConfigurationBuilder LegacyLoaderConfigurationBuilder.cacheLoader(CacheLoader cacheLoader)
          NOTE: Currently Infinispan will not use the object instance, but instead instantiate a new instance of the class.
 LegacyStoreConfigurationBuilder LegacyStoreConfigurationBuilder.cacheLoader(CacheLoader cacheLoader)
          Deprecated. 
 LoaderConfigurationBuilder LoaderConfigurationBuilder.cacheLoader(CacheLoader cacheLoader)
          Deprecated. 
 

Uses of CacheLoader in org.infinispan.distexec.mapreduce
 

Methods in org.infinispan.distexec.mapreduce that return CacheLoader
protected  CacheLoader MapReduceManagerImpl.resolveCacheLoader()
           
 

Uses of CacheLoader in org.infinispan.interceptors
 

Fields in org.infinispan.interceptors declared as CacheLoader
protected  CacheLoader CacheLoaderInterceptor.loader
           
 

Uses of CacheLoader in org.infinispan.loaders
 

Subinterfaces of CacheLoader in org.infinispan.loaders
 interface CacheStore
          A specialization of the CacheLoader interface that can be written to.
 

Classes in org.infinispan.loaders that implement CacheLoader
 class AbstractCacheLoader
          An abstract CacheLoader that holds common implementations for some methods
 class AbstractCacheStore
          An abstract CacheStore that holds common implementations for some methods
 class LockSupportCacheStore<L>
          This class extends AbstractCacheStore adding lock support for consistently accessing stored data.
 

Methods in org.infinispan.loaders with type parameters of type CacheLoader
<T extends CacheLoader>
List<T>
CacheLoaderManagerImpl.getCacheLoaders(Class<T> loaderClass)
           
<T extends CacheLoader>
List<T>
CacheLoaderManager.getCacheLoaders(Class<T> loaderClass)
           
 

Methods in org.infinispan.loaders that return CacheLoader
 CacheLoader CacheLoaderManagerImpl.getCacheLoader()
           
 CacheLoader CacheLoaderManager.getCacheLoader()
           
 

Uses of CacheLoader in org.infinispan.loaders.bucket
 

Classes in org.infinispan.loaders.bucket that implement CacheLoader
 class BucketBasedCacheStore
          Base class for CacheStore implementations that combine entries into buckets when storing data.
 

Uses of CacheLoader in org.infinispan.loaders.cluster
 

Classes in org.infinispan.loaders.cluster that implement CacheLoader
 class ClusterCacheLoader
          Cache loader that consults other members in the cluster for values.
 

Uses of CacheLoader in org.infinispan.loaders.decorators
 

Classes in org.infinispan.loaders.decorators that implement CacheLoader
 class AbstractDelegatingStore
          Simple delegate that delegates all calls.
 class AsyncStore
          The AsyncStore is a delegating CacheStore that buffers changes and writes them asynchronously to the underlying CacheStore.
 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.loaders.decorators with type parameters of type CacheLoader
<T extends CacheLoader>
List<T>
ChainingCacheStore.getCacheLoaders(Class<T> loaderClass)
           
 

Methods in org.infinispan.loaders.decorators that return CacheLoader
static CacheLoader AbstractDelegatingStore.undelegateCacheLoader(CacheLoader store)
           
 

Methods in org.infinispan.loaders.decorators with parameters of type CacheLoader
 void ChainingCacheStore.addCacheLoader(CacheLoader loader, CacheLoaderConfiguration config)
           
static CacheLoader AbstractDelegatingStore.undelegateCacheLoader(CacheLoader store)
           
 

Uses of CacheLoader in org.infinispan.loaders.file
 

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

Uses of CacheLoader in org.infinispan.loaders.jdbc.binary
 

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

Uses of CacheLoader in org.infinispan.loaders.jdbc.mixed
 

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

Uses of CacheLoader in org.infinispan.loaders.jdbc.stringbased
 

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

Uses of CacheLoader in org.infinispan.loaders.remote
 

Classes in org.infinispan.loaders.remote that implement CacheLoader
 class RemoteCacheStore
          Cache store that delegates the call to a infinispan cluster.
 

Uses of CacheLoader in org.infinispan.lucene.cachestore
 

Classes in org.infinispan.lucene.cachestore that implement CacheLoader
 class LuceneCacheLoader
          A CacheLoader meant to load Lucene index(es) from filesystem based Lucene index(es).
 


Infinispan Distribution 5.2.6.Final-redhat-2

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