Uses of Class
org.infinispan.configuration.cache.Configuration
-
Packages that use Configuration Package Description org.infinispan This is the core of Infinispan, a distributed, transactional, highly scalable data grid platform.org.infinispan.batch Support for batching calls using theBatchingCache.startBatch()andBatchingCache.endBatch(boolean)API.org.infinispan.configuration org.infinispan.configuration.cache Cacheconfigurationorg.infinispan.configuration.format org.infinispan.configuration.parsing org.infinispan.configuration.serializing org.infinispan.context Contexts contain information of a specific invocation on the cache, such as its origins, scope (transactional or non-transactional), as well as invocation-specific flags.org.infinispan.encoding org.infinispan.factories Factories are internal components used to create other components based on a cache's configuration.org.infinispan.globalstate Global configuration state.org.infinispan.interceptors Infinispan is designed around a set of interceptors around a data container.org.infinispan.interceptors.base Base interceptors containing common, reusable behavior.org.infinispan.interceptors.locking Interceptors dealing with locking.org.infinispan.lifecycle Component lifecycle.org.infinispan.manager Cache manager API.org.infinispan.multimap.api.embedded Embedded Multimap Cache.org.infinispan.registry The internal cache registry APIorg.infinispan.remoting.inboundhandler Handling of inbound commands on remote nodes.org.infinispan.rest.operations REST Server Operations classes.org.infinispan.security.actions org.infinispan.server.core.admin.embeddedserver org.infinispan.server.hotrod org.infinispan.server.memcached org.infinispan.statetransfer Transfer of state to new caches in a cluster.org.infinispan.stats Cache statistics.org.infinispan.transaction.lookup Interfaces and implementations of lookup classes to locate and/or instantiate JTATransactionManagers. -
-
Uses of Configuration in org.infinispan
Methods in org.infinispan that return Configuration Modifier and Type Method Description ConfigurationCache. getCacheConfiguration() -
Uses of Configuration in org.infinispan.batch
Methods in org.infinispan.batch with parameters of type Configuration Modifier and Type Method Description protected static voidAutoBatchSupport. assertBatchingSupported(Configuration c) -
Uses of Configuration in org.infinispan.configuration
Methods in org.infinispan.configuration that return Configuration Modifier and Type Method Description ConfigurationConfigurationManager. getConfiguration(java.lang.String cacheName, boolean includeWildcards)ConfigurationConfigurationManager. getConfiguration(java.lang.String cacheName, java.lang.String defaultCacheName)ConfigurationConfigurationManager. putConfiguration(java.lang.String cacheName, Configuration configuration)ConfigurationConfigurationManager. putConfiguration(java.lang.String cacheName, ConfigurationBuilder builder)Methods in org.infinispan.configuration with parameters of type Configuration Modifier and Type Method Description ConfigurationConfigurationManager. putConfiguration(java.lang.String cacheName, Configuration configuration) -
Uses of Configuration in org.infinispan.configuration.cache
Methods in org.infinispan.configuration.cache that return Configuration Modifier and Type Method Description ConfigurationConfigurationBuilder. build()ConfigurationConfigurationBuilder. build(boolean validate)ConfigurationConfigurationBuilder. build(GlobalConfiguration globalConfiguration)ConfigurationConfigurationChildBuilder. build()Methods in org.infinispan.configuration.cache with parameters of type Configuration Modifier and Type Method Description static booleanConfigurations. hasSharedCacheLoaderOrWriter(Configuration configuration)static booleanConfigurations. isExceptionBasedEviction(Configuration cfg)static booleanConfigurations. isOnePhaseCommit(Configuration cfg)static booleanConfigurations. isOnePhaseTotalOrderCommit(Configuration cfg)static booleanConfigurations. isTxVersioned(Configuration cfg)booleanConfiguration. matches(Configuration other)static booleanConfigurations. noDataLossOnJoiner(Configuration configuration)ConfigurationBuilderConfigurationBuilder. read(Configuration template) -
Uses of Configuration in org.infinispan.configuration.format
Methods in org.infinispan.configuration.format with parameters of type Configuration Modifier and Type Method Description java.util.PropertiesPropertyFormatter. format(Configuration configuration) -
Uses of Configuration in org.infinispan.configuration.parsing
Methods in org.infinispan.configuration.parsing with parameters of type Configuration Modifier and Type Method Description voidParserRegistry. serialize(java.io.OutputStream os, java.lang.String name, Configuration configuration)Serializes a single configuration to an OutputStreamjava.lang.StringParserRegistry. serialize(java.lang.String name, Configuration configuration)Serializes a single configuration to a StringMethod parameters in org.infinispan.configuration.parsing with type arguments of type Configuration Modifier and Type Method Description voidParserRegistry. serialize(java.io.OutputStream os, GlobalConfiguration globalConfiguration, java.util.Map<java.lang.String,Configuration> configurations)Serializes a full configuration to anOutputStreamvoidParserRegistry. serialize(XMLExtendedStreamWriter writer, GlobalConfiguration globalConfiguration, java.util.Map<java.lang.String,Configuration> configurations)Serializes a full configuration to anXMLExtendedStreamWriter -
Uses of Configuration in org.infinispan.configuration.serializing
Methods in org.infinispan.configuration.serializing that return types with arguments of type Configuration Modifier and Type Method Description java.util.Map<java.lang.String,Configuration>ConfigurationHolder. getConfigurations()Constructor parameters in org.infinispan.configuration.serializing with type arguments of type Configuration Constructor Description ConfigurationHolder(GlobalConfiguration globalConfiguration, java.util.Map<java.lang.String,Configuration> configurations) -
Uses of Configuration in org.infinispan.context
Fields in org.infinispan.context declared as Configuration Modifier and Type Field Description protected ConfigurationAbstractInvocationContextFactory. configDeprecated. -
Uses of Configuration in org.infinispan.encoding
Methods in org.infinispan.encoding with parameters of type Configuration Modifier and Type Method Description voidDataConversion. injectDependencies(GlobalConfiguration gcr, EncoderRegistry encoderRegistry, Configuration configuration) -
Uses of Configuration in org.infinispan.factories
Fields in org.infinispan.factories declared as Configuration Modifier and Type Field Description protected ConfigurationAbstractNamedCacheComponentFactory. configurationMethods in org.infinispan.factories that return Configuration Modifier and Type Method Description protected ConfigurationAbstractComponentRegistry. getConfiguration()Deprecated.Retrieves the configuration component.Methods in org.infinispan.factories with parameters of type Configuration Modifier and Type Method Description Cache<K,V>InternalCacheFactory. createCache(Configuration configuration, GlobalComponentRegistry globalComponentRegistry, java.lang.String cacheName)This implementation clones the configuration passed in before using it.static InterceptorChainFactoryInterceptorChainFactory. getInstance(ComponentRegistry componentRegistry, Configuration configuration)Deprecated.Since 9.4, not used.Constructors in org.infinispan.factories with parameters of type Configuration Constructor Description ComponentRegistry(java.lang.String cacheName, Configuration configuration, AdvancedCache<?,?> cache, GlobalComponentRegistry globalComponents, java.lang.ClassLoader defaultClassLoader)Creates an instance of the component registry. -
Uses of Configuration in org.infinispan.globalstate
Methods in org.infinispan.globalstate that return Configuration Modifier and Type Method Description ConfigurationGlobalConfigurationManager. createCache(java.lang.String cacheName, java.lang.String template, java.util.EnumSet<CacheContainerAdmin.AdminFlag> flags)Defines a cluster-wide cache configuration using the supplied templateConfigurationGlobalConfigurationManager. createCache(java.lang.String cacheName, Configuration configuration, java.util.EnumSet<CacheContainerAdmin.AdminFlag> flags)Defines a cluster-wide cache configurationConfigurationGlobalConfigurationManager. getOrCreateCache(java.lang.String cacheName, java.lang.String template, java.util.EnumSet<CacheContainerAdmin.AdminFlag> flags)Defines a cluster-wide cache configuration using the supplied template or retrieves an existing oneConfigurationGlobalConfigurationManager. getOrCreateCache(java.lang.String cacheName, Configuration configuration, java.util.EnumSet<CacheContainerAdmin.AdminFlag> flags)Defines a cluster-wide cache configuration or retrieves an existing oneMethods in org.infinispan.globalstate that return types with arguments of type Configuration Modifier and Type Method Description java.util.Map<java.lang.String,Configuration>LocalConfigurationStorage. loadAll()Loads all persisted cache configurationsMethods in org.infinispan.globalstate with parameters of type Configuration Modifier and Type Method Description ConfigurationGlobalConfigurationManager. createCache(java.lang.String cacheName, Configuration configuration, java.util.EnumSet<CacheContainerAdmin.AdminFlag> flags)Defines a cluster-wide cache configurationvoidLocalConfigurationStorage. createCache(java.lang.String name, java.lang.String template, Configuration configuration, java.util.EnumSet<CacheContainerAdmin.AdminFlag> flags)Creates the cache using the supplied template, configuration and flags.ConfigurationGlobalConfigurationManager. getOrCreateCache(java.lang.String cacheName, Configuration configuration, java.util.EnumSet<CacheContainerAdmin.AdminFlag> flags)Defines a cluster-wide cache configuration or retrieves an existing one -
Uses of Configuration in org.infinispan.interceptors
Fields in org.infinispan.interceptors declared as Configuration Modifier and Type Field Description protected ConfigurationBaseAsyncInterceptor. cacheConfiguration -
Uses of Configuration in org.infinispan.interceptors.base
Fields in org.infinispan.interceptors.base declared as Configuration Modifier and Type Field Description protected ConfigurationCommandInterceptor. cacheConfigurationDeprecated. -
Uses of Configuration in org.infinispan.interceptors.locking
Fields in org.infinispan.interceptors.locking declared as Configuration Modifier and Type Field Description protected ConfigurationClusteringDependentLogic.AbstractClusteringDependentLogic. configurationMethods in org.infinispan.interceptors.locking with parameters of type Configuration Modifier and Type Method Description voidClusteringDependentLogic.LocalLogic. init(Transport transport, Configuration configuration, KeyPartitioner keyPartitioner) -
Uses of Configuration in org.infinispan.lifecycle
Methods in org.infinispan.lifecycle with parameters of type Configuration Modifier and Type Method Description voidAbstractModuleLifecycle. cacheStarting(ComponentRegistry cr, Configuration configuration, java.lang.String cacheName)Deprecated.default voidModuleLifecycle. cacheStarting(ComponentRegistry cr, Configuration configuration, java.lang.String cacheName) -
Uses of Configuration in org.infinispan.manager
Methods in org.infinispan.manager that return Configuration Modifier and Type Method Description ConfigurationDefaultCacheManager. defineConfiguration(java.lang.String name, java.lang.String template, Configuration configurationOverride)ConfigurationDefaultCacheManager. defineConfiguration(java.lang.String name, Configuration configuration)ConfigurationEmbeddedCacheManager. defineConfiguration(java.lang.String cacheName, java.lang.String templateCacheName, Configuration configurationOverride)Defines a named cache's configuration using by first reading the template configuration and then applying the override afterwards to generate a configuration.ConfigurationEmbeddedCacheManager. defineConfiguration(java.lang.String cacheName, Configuration configuration)Defines a named cache's configuration by using the provided configurationConfigurationDefaultCacheManager. getCacheConfiguration(java.lang.String name)ConfigurationEmbeddedCacheManager. getCacheConfiguration(java.lang.String name)Returns the configuration for the given cache.ConfigurationDefaultCacheManager. getDefaultCacheConfiguration()ConfigurationEmbeddedCacheManager. getDefaultCacheConfiguration()Returns default configuration for this CacheManagerMethods in org.infinispan.manager with parameters of type Configuration Modifier and Type Method Description <K,V>
Cache<K,V>DefaultCacheManager. createCache(java.lang.String name, Configuration configuration)<K,V>
Cache<K,V>DefaultCacheManagerAdmin. createCache(java.lang.String cacheName, Configuration configuration)<K,V>
Cache<K,V>EmbeddedCacheManager. createCache(java.lang.String name, Configuration configuration)Creates a cache on the local node using the supplied configuration.<K,V>
Cache<K,V>EmbeddedCacheManagerAdmin. createCache(java.lang.String name, Configuration configuration)Creates a cache across the cluster.ConfigurationDefaultCacheManager. defineConfiguration(java.lang.String name, java.lang.String template, Configuration configurationOverride)ConfigurationDefaultCacheManager. defineConfiguration(java.lang.String name, Configuration configuration)ConfigurationEmbeddedCacheManager. defineConfiguration(java.lang.String cacheName, java.lang.String templateCacheName, Configuration configurationOverride)Defines a named cache's configuration using by first reading the template configuration and then applying the override afterwards to generate a configuration.ConfigurationEmbeddedCacheManager. defineConfiguration(java.lang.String cacheName, Configuration configuration)Defines a named cache's configuration by using the provided configuration<K,V>
Cache<K,V>DefaultCacheManagerAdmin. getOrCreateCache(java.lang.String cacheName, Configuration configuration)<K,V>
Cache<K,V>EmbeddedCacheManagerAdmin. getOrCreateCache(java.lang.String name, Configuration configuration)Retrieves an existing cache or creates one across the cluster using the specified configuration.Constructors in org.infinispan.manager with parameters of type Configuration Constructor Description DefaultCacheManager(Configuration defaultConfiguration)Constructs and starts a new instance of the CacheManager, using the default configuration passed in.DefaultCacheManager(Configuration defaultConfiguration, boolean start)Constructs a new instance of the CacheManager, using the default configuration passed in.DefaultCacheManager(GlobalConfiguration globalConfiguration, Configuration defaultConfiguration)Constructs and starts a new instance of the CacheManager, using the global and default configurations passed in.DefaultCacheManager(GlobalConfiguration globalConfiguration, Configuration defaultConfiguration, boolean start)Constructs a new instance of the CacheManager, using the global and default configurations passed in. -
Uses of Configuration in org.infinispan.multimap.api.embedded
Methods in org.infinispan.multimap.api.embedded that return Configuration Modifier and Type Method Description ConfigurationMultimapCacheManager. defineConfiguration(java.lang.String name, Configuration configuration)Defines a named multimap cache's configuration by using the provided configuration If this cache was already configured either declaritively or programmatically this method will throw aCacheConfigurationException.Methods in org.infinispan.multimap.api.embedded with parameters of type Configuration Modifier and Type Method Description ConfigurationMultimapCacheManager. defineConfiguration(java.lang.String name, Configuration configuration)Defines a named multimap cache's configuration by using the provided configuration If this cache was already configured either declaritively or programmatically this method will throw aCacheConfigurationException. -
Uses of Configuration in org.infinispan.registry
Methods in org.infinispan.registry with parameters of type Configuration Modifier and Type Method Description voidInternalCacheRegistry. registerInternalCache(java.lang.String name, Configuration configuration)Registers an internal cache.voidInternalCacheRegistry. registerInternalCache(java.lang.String name, Configuration configuration, java.util.EnumSet<InternalCacheRegistry.Flag> flags)Registers an internal cache with the specified flags. -
Uses of Configuration in org.infinispan.remoting.inboundhandler
Fields in org.infinispan.remoting.inboundhandler declared as Configuration Modifier and Type Field Description protected ConfigurationBasePerCacheInboundInvocationHandler. configuration -
Uses of Configuration in org.infinispan.rest.operations
Methods in org.infinispan.rest.operations with parameters of type Configuration Modifier and Type Method Description static MetadataCacheOperationsHelper. createMetadata(Configuration cfg, java.util.Optional<java.lang.Long> ttl, java.util.Optional<java.lang.Long> idleTime) -
Uses of Configuration in org.infinispan.security.actions
Methods in org.infinispan.security.actions that return Configuration Modifier and Type Method Description ConfigurationGetCacheConfigurationAction. run()Constructors in org.infinispan.security.actions with parameters of type Configuration Constructor Description DefineConfigurationAction(EmbeddedCacheManager cacheManager, java.lang.String cacheName, Configuration configurationOverride) -
Uses of Configuration in org.infinispan.server.core.admin.embeddedserver
Methods in org.infinispan.server.core.admin.embeddedserver that return Configuration Modifier and Type Method Description protected ConfigurationCacheCreateTask. getConfiguration(java.lang.String name, java.lang.String configuration) -
Uses of Configuration in org.infinispan.server.hotrod
Methods in org.infinispan.server.hotrod with parameters of type Configuration Modifier and Type Method Description voidLifecycleCallbacks. cacheStarting(ComponentRegistry cr, Configuration configuration, java.lang.String cacheName)protected org.infinispan.server.hotrod.AbstractHashDistAwareResponseAbstractEncoder1x. createHashDistAwareResp(int topologyId, java.util.Map<Address,ServerAddress> serverEndpointsMap, Configuration cfg)protected org.infinispan.server.hotrod.AbstractHashDistAwareResponseAbstractTopologyAwareEncoder1x. createHashDistAwareResp(int topologyId, java.util.Map<Address,ServerAddress> serverEndpointsMap, Configuration cfg) -
Uses of Configuration in org.infinispan.server.memcached
Fields in org.infinispan.server.memcached declared as Configuration Modifier and Type Field Description protected ConfigurationMemcachedDecoder. cacheConfiguration -
Uses of Configuration in org.infinispan.statetransfer
Fields in org.infinispan.statetransfer declared as Configuration Modifier and Type Field Description protected ConfigurationStateConsumerImpl. configurationMethods in org.infinispan.statetransfer with parameters of type Configuration Modifier and Type Method Description static ConsistentHashFactoryStateTransferManagerImpl. pickConsistentHashFactory(GlobalConfiguration globalConfiguration, Configuration configuration)If no ConsistentHashFactory was explicitly configured we choose a suitable one based on cache mode. -
Uses of Configuration in org.infinispan.stats
Constructors in org.infinispan.stats with parameters of type Configuration Constructor Description CacheStatisticManager(Configuration configuration, TimeService timeService) -
Uses of Configuration in org.infinispan.transaction.lookup
Methods in org.infinispan.transaction.lookup with parameters of type Configuration Modifier and Type Method Description voidJBossStandaloneJTAManagerLookup. init(Configuration configuration)Deprecated.UseJBossStandaloneJTAManagerLookup.init(org.infinispan.configuration.global.GlobalConfiguration)instead sinceConfigurationhas no access to classloader any more.voidWildflyTransactionManagerLookup. init(Configuration configuration)Deprecated.UseWildflyTransactionManagerLookup.init(GlobalConfiguration)instead sinceConfigurationhas no access to classloader any more.
-