Infinispan Distribution 5.2.6.Final-redhat-2

Uses of Interface
org.infinispan.loaders.CacheLoaderConfig

Packages that use CacheLoaderConfig
org.infinispan.config Cache configuration beans and parsers. 
org.infinispan.configuration.cache Classes related to eviction. 
org.infinispan.loaders This package contains loaders and stores, which are used for overflow or persistence. 
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 This package contains a CacheStore implementation based on a JDBC database connection. 
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 CacheLoaderConfig in org.infinispan.config
 

Fields in org.infinispan.config with type parameters of type CacheLoaderConfig
protected  List<CacheLoaderConfig> CacheLoaderManagerConfig.cacheLoaderConfigs
           
 

Methods in org.infinispan.config that return CacheLoaderConfig
 CacheLoaderConfig CacheLoaderManagerConfig.getFirstCacheLoaderConfig()
           
 

Methods in org.infinispan.config that return types with arguments of type CacheLoaderConfig
 List<CacheLoaderConfig> CacheLoaderManagerConfig.getCacheLoaderConfigs()
           
 List<CacheLoaderConfig> Configuration.getCacheLoaders()
          Deprecated.  
 

Methods in org.infinispan.config with parameters of type CacheLoaderConfig
 FluentConfiguration.LoadersConfig CacheLoaderManagerConfig.addCacheLoader(CacheLoaderConfig... configs)
           
 FluentConfiguration.LoadersConfig FluentConfiguration.LoadersConfig.addCacheLoader(CacheLoaderConfig... configs)
          Deprecated.  
 FluentConfiguration.LoadersConfig CacheLoaderManagerConfig.addCacheLoaderConfig(CacheLoaderConfig clc)
          Deprecated. use CacheLoaderManagerConfig.addCacheLoader(org.infinispan.loaders.CacheLoaderConfig...) instead
 void DelegatingConfigurationVisitor.visitCacheLoaderConfig(CacheLoaderConfig bean)
           
 void AbstractConfigurationBeanVisitor.visitCacheLoaderConfig(CacheLoaderConfig bean)
           
 void ConfigurationBeanVisitor.visitCacheLoaderConfig(CacheLoaderConfig bean)
           
 

Method parameters in org.infinispan.config with type arguments of type CacheLoaderConfig
 FluentConfiguration.LoadersConfig CacheLoaderManagerConfig.setCacheLoaderConfigs(List<CacheLoaderConfig> configs)
          Deprecated. The visibility of this method will be reduced and XMLElement definition is likely to move to the getCacheLoaderConfigs().
 

Constructors in org.infinispan.config with parameters of type CacheLoaderConfig
CacheLoaderManagerConfig(CacheLoaderConfig clc)
           
 

Uses of CacheLoaderConfig in org.infinispan.configuration.cache
 

Classes in org.infinispan.configuration.cache with type parameters of type CacheLoaderConfig
 interface LegacyLoaderAdapter<T extends CacheLoaderConfig>
          Deprecated. 
 

Methods in org.infinispan.configuration.cache that return CacheLoaderConfig
static CacheLoaderConfig LegacyConfigurationAdaptor.adapt(CacheLoaderConfiguration loader)
           
 

Methods in org.infinispan.configuration.cache with parameters of type CacheLoaderConfig
static void LegacyConfigurationAdaptor.adapt(ClassLoader cl, ConfigurationBuilder builder, CacheLoaderConfig clc)
           
 

Uses of CacheLoaderConfig in org.infinispan.loaders
 

Subinterfaces of CacheLoaderConfig in org.infinispan.loaders
 interface CacheStoreConfig
          Defines config elements for all CacheStoreConfigs.
 

Classes in org.infinispan.loaders that implement CacheLoaderConfig
 class AbstractCacheLoaderConfig
          Abstract base class for CacheLoaderConfigs.
 class AbstractCacheStoreConfig
          Configures AbstractCacheStore.
 class LockSupportCacheStoreConfig
          Adds configuration support for LockSupportCacheStore.
 

Methods in org.infinispan.loaders that return CacheLoaderConfig
 CacheLoaderConfig CacheLoaderConfig.clone()
           
 

Methods in org.infinispan.loaders that return types with arguments of type CacheLoaderConfig
 Class<? extends CacheLoaderConfig> CacheLoader.getConfigurationClass()
          This method is used by the configuration parser to get a hold of the CacheLoader implementation's corresponding CacheLoaderConfig type.
 

Methods in org.infinispan.loaders with parameters of type CacheLoaderConfig
 void LockSupportCacheStore.init(CacheLoaderConfig config, Cache<?,?> cache, StreamingMarshaller m)
           
 void AbstractCacheLoader.init(CacheLoaderConfig config, Cache<?,?> cache, StreamingMarshaller m)
           
 void AbstractCacheStore.init(CacheLoaderConfig config, Cache<?,?> cache, StreamingMarshaller m)
           
 void CacheLoader.init(CacheLoaderConfig config, Cache<?,?> cache, StreamingMarshaller m)
          Used to initialize a cache loader.
 

Uses of CacheLoaderConfig in org.infinispan.loaders.cluster
 

Classes in org.infinispan.loaders.cluster that implement CacheLoaderConfig
 class ClusterCacheLoaderConfig
          Configuration for ClusterCacheLoader.
 

Methods in org.infinispan.loaders.cluster that return types with arguments of type CacheLoaderConfig
 Class<? extends CacheLoaderConfig> ClusterCacheLoader.getConfigurationClass()
           
 

Methods in org.infinispan.loaders.cluster with parameters of type CacheLoaderConfig
 void ClusterCacheLoader.init(CacheLoaderConfig config, Cache<?,?> cache, StreamingMarshaller m)
           
 

Uses of CacheLoaderConfig in org.infinispan.loaders.decorators
 

Classes in org.infinispan.loaders.decorators that implement CacheLoaderConfig
 class AbstractDecoratorConfigurationBean
          Class to aid decorators to be able to fluently modify parent properties.
 class AsyncStoreConfig
          Configuration for the async cache loader.
 class SingletonStoreConfig
          SingletonStore is a delegating cache store used for situations when only one instance in a cluster should interact with the underlying store.
 

Methods in org.infinispan.loaders.decorators that return types with arguments of type CacheLoaderConfig
 Class<? extends CacheLoaderConfig> AbstractDelegatingStore.getConfigurationClass()
           
 Class<? extends CacheLoaderConfig> ChainingCacheStore.getConfigurationClass()
           
 

Methods in org.infinispan.loaders.decorators with parameters of type CacheLoaderConfig
 void AbstractDelegatingStore.init(CacheLoaderConfig config, Cache<?,?> cache, StreamingMarshaller m)
           
 void AsyncStore.init(CacheLoaderConfig config, Cache<?,?> cache, StreamingMarshaller m)
           
 void ChainingCacheStore.init(CacheLoaderConfig config, Cache<?,?> cache, StreamingMarshaller m)
           
 

Uses of CacheLoaderConfig in org.infinispan.loaders.file
 

Classes in org.infinispan.loaders.file that implement CacheLoaderConfig
 class FileCacheStoreConfig
          Configures FileCacheStore.
 

Methods in org.infinispan.loaders.file that return types with arguments of type CacheLoaderConfig
 Class<? extends CacheLoaderConfig> FileCacheStore.getConfigurationClass()
           
 

Methods in org.infinispan.loaders.file with parameters of type CacheLoaderConfig
 void FileCacheStore.init(CacheLoaderConfig config, Cache<?,?> cache, StreamingMarshaller m)
           
 

Uses of CacheLoaderConfig in org.infinispan.loaders.jdbc
 

Classes in org.infinispan.loaders.jdbc that implement CacheLoaderConfig
 class AbstractJdbcCacheStoreConfig
          This is an abstract configuration class containing common elements for all JDBC cache store types.
 class AbstractNonDelegatingJdbcCacheStoreConfig
          An abstract configuration for JDBC cache stores which have support for locking.
 

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

Classes in org.infinispan.loaders.jdbc.binary that implement CacheLoaderConfig
 class JdbcBinaryCacheStoreConfig
          Defines available configuration elements for JdbcBinaryCacheStore.
 

Methods in org.infinispan.loaders.jdbc.binary that return types with arguments of type CacheLoaderConfig
 Class<? extends CacheLoaderConfig> JdbcBinaryCacheStore.getConfigurationClass()
           
 

Methods in org.infinispan.loaders.jdbc.binary with parameters of type CacheLoaderConfig
 void JdbcBinaryCacheStore.init(CacheLoaderConfig config, Cache<?,?> cache, StreamingMarshaller m)
           
 

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

Classes in org.infinispan.loaders.jdbc.mixed that implement CacheLoaderConfig
 class JdbcMixedCacheStoreConfig
          Configuration for JdbcMixedCacheStore.
 

Methods in org.infinispan.loaders.jdbc.mixed that return types with arguments of type CacheLoaderConfig
 Class<? extends CacheLoaderConfig> JdbcMixedCacheStore.getConfigurationClass()
           
 

Methods in org.infinispan.loaders.jdbc.mixed with parameters of type CacheLoaderConfig
 void JdbcMixedCacheStore.init(CacheLoaderConfig config, Cache<?,?> cache, StreamingMarshaller m)
           
 

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

Classes in org.infinispan.loaders.jdbc.stringbased that implement CacheLoaderConfig
 class JdbcStringBasedCacheStoreConfig
          Configuration for JdbcStringBasedCacheStore cache store.
 

Methods in org.infinispan.loaders.jdbc.stringbased that return types with arguments of type CacheLoaderConfig
 Class<? extends CacheLoaderConfig> JdbcStringBasedCacheStore.getConfigurationClass()
           
 

Methods in org.infinispan.loaders.jdbc.stringbased with parameters of type CacheLoaderConfig
 void JdbcStringBasedCacheStore.init(CacheLoaderConfig config, Cache<?,?> cache, StreamingMarshaller m)
           
 

Uses of CacheLoaderConfig in org.infinispan.loaders.remote
 

Classes in org.infinispan.loaders.remote that implement CacheLoaderConfig
 class RemoteCacheStoreConfig
          Configuration for RemoteCacheStore.
 

Methods in org.infinispan.loaders.remote that return types with arguments of type CacheLoaderConfig
 Class<? extends CacheLoaderConfig> RemoteCacheStore.getConfigurationClass()
           
 

Methods in org.infinispan.loaders.remote with parameters of type CacheLoaderConfig
 void RemoteCacheStore.init(CacheLoaderConfig config, Cache<?,?> cache, StreamingMarshaller m)
           
 

Uses of CacheLoaderConfig in org.infinispan.lucene.cachestore
 

Classes in org.infinispan.lucene.cachestore that implement CacheLoaderConfig
 class LuceneCacheLoaderConfig
          Configuration for a LuceneCacheLoader.
 

Methods in org.infinispan.lucene.cachestore that return CacheLoaderConfig
 CacheLoaderConfig LuceneCacheLoaderConfig.clone()
           
 

Methods in org.infinispan.lucene.cachestore that return types with arguments of type CacheLoaderConfig
 Class<? extends CacheLoaderConfig> LuceneCacheLoader.getConfigurationClass()
           
 

Methods in org.infinispan.lucene.cachestore with parameters of type CacheLoaderConfig
 void LuceneCacheLoader.init(CacheLoaderConfig config, Cache<?,?> cache, StreamingMarshaller m)
           
 


Infinispan Distribution 5.2.6.Final-redhat-2

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