Class PersistenceConfigurationBuilder
java.lang.Object
org.infinispan.configuration.cache.PersistenceConfigurationBuilder
- All Implemented Interfaces:
Builder<PersistenceConfiguration>
,ConfigurationChildBuilder
public class PersistenceConfigurationBuilder
extends Object
implements Builder<PersistenceConfiguration>
Configuration for cache stores.
-
Field Summary
-
Constructor Summary
ModifierConstructorDescriptionprotected
-
Method Summary
Modifier and TypeMethodDescriptionDeprecated, for removal: This API element is subject to removal in a future version.since 11.0.Deprecated, for removal: This API element is subject to removal in a future version.since 13.0.Adds a soft index file cache store.<T extends StoreConfigurationBuilder<?,
?>>
TAdds a cache loader that uses the specified builder class to build its configuration.addStore
(StoreConfigurationBuilder<?, ?> builder) Adds a cache loader that uses the specified builder instance to build its configuration.availabilityInterval
(int interval) build()
Removes any configured stores from this builder.connectionAttempts
(int attempts) connectionInterval
(int interval) create()
Create the configuration beanDeprecated, for removal: This API element is subject to removal in a future version.Since 10.0, custom interceptors support will be removed and only modules will be able to define interceptorsencoding()
protected ConfigurationBuilder
indexing()
locking()
memory()
passivation
(boolean b) query()
read
(PersistenceConfiguration template, Combine combine) Reads the configuration from an already created configuration bean into this builder.security()
boolean
simpleCache
(boolean simpleCache) sites()
stores()
template
(boolean template) toString()
unsafe()
void
validate()
Validate the data in this builder before building the configuration beanvoid
validate
(GlobalConfiguration globalConfig) Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
Methods inherited from interface org.infinispan.configuration.cache.ConfigurationChildBuilder
jmxStatistics
-
Field Details
-
builder
-
-
Constructor Details
-
PersistenceConfigurationBuilder
-
-
Method Details
-
attributes
- Specified by:
attributes
in interfaceBuilder<PersistenceConfiguration>
-
passivation
-
availabilityInterval
- Parameters:
interval
- The time, in milliseconds, between availability checks to determine if the PersistenceManager is available. In other words, this interval sets how often stores/loaders are polled via their `org.infinispan.persistence.spi.CacheWriter#isAvailable` or `org.infinispan.persistence.spi.CacheLoader#isAvailable` implementation. If a single store/loader is not available, an exception is thrown during cache operations.
-
connectionAttempts
- Parameters:
attempts
- The maximum number of unsuccessful attempts to start each of the configured CacheWriter/CacheLoader before an exception is thrown and the cache fails to start.
-
connectionInterval
- Parameters:
interval
- The time, in milliseconds, to wait between subsequent connection attempts on startup. A negative or zero value means no wait between connection attempts.
-
addStore
Adds a cache loader that uses the specified builder class to build its configuration. -
addStore
Adds a cache loader that uses the specified builder instance to build its configuration.- Parameters:
builder
- is an instance ofStoreConfigurationBuilder
.
-
addClusterLoader
Deprecated, for removal: This API element is subject to removal in a future version.since 11.0. To be removed in 14.0 ISPN-11864 with no direct replacement.Adds a cluster cache loader. -
addSingleFileStore
Deprecated, for removal: This API element is subject to removal in a future version.since 13.0. To be removed in 14.0 has been replaced byaddSoftIndexFileStore()
Adds a single file cache store. -
addSoftIndexFileStore
Adds a soft index file cache store.- Returns:
- the configuration for a soft index file store
-
clearStores
Removes any configured stores from this builder. -
validate
public void validate()Description copied from interface:Builder
Validate the data in this builder before building the configuration bean- Specified by:
validate
in interfaceBuilder<PersistenceConfiguration>
-
validate
- Specified by:
validate
in interfaceConfigurationChildBuilder
-
create
Description copied from interface:Builder
Create the configuration bean- Specified by:
create
in interfaceBuilder<PersistenceConfiguration>
- Returns:
-
read
Description copied from interface:Builder
Reads the configuration from an already created configuration bean into this builder. Returns an appropriate builder to allow fluent configuration- Specified by:
read
in interfaceBuilder<PersistenceConfiguration>
- Parameters:
template
- the configuration from which to "clone" this config if needed.combine
- the way attributes and children of this instance and the template should be combined.
-
stores
-
toString
-
template
- Specified by:
template
in interfaceConfigurationChildBuilder
-
simpleCache
- Specified by:
simpleCache
in interfaceConfigurationChildBuilder
-
simpleCache
public boolean simpleCache()- Specified by:
simpleCache
in interfaceConfigurationChildBuilder
-
clustering
- Specified by:
clustering
in interfaceConfigurationChildBuilder
-
customInterceptors
Deprecated, for removal: This API element is subject to removal in a future version.Since 10.0, custom interceptors support will be removed and only modules will be able to define interceptors- Specified by:
customInterceptors
in interfaceConfigurationChildBuilder
-
encoding
- Specified by:
encoding
in interfaceConfigurationChildBuilder
-
expiration
- Specified by:
expiration
in interfaceConfigurationChildBuilder
-
query
- Specified by:
query
in interfaceConfigurationChildBuilder
-
indexing
- Specified by:
indexing
in interfaceConfigurationChildBuilder
-
invocationBatching
- Specified by:
invocationBatching
in interfaceConfigurationChildBuilder
-
statistics
- Specified by:
statistics
in interfaceConfigurationChildBuilder
-
persistence
- Specified by:
persistence
in interfaceConfigurationChildBuilder
-
locking
- Specified by:
locking
in interfaceConfigurationChildBuilder
-
security
- Specified by:
security
in interfaceConfigurationChildBuilder
-
transaction
- Specified by:
transaction
in interfaceConfigurationChildBuilder
-
unsafe
- Specified by:
unsafe
in interfaceConfigurationChildBuilder
-
sites
- Specified by:
sites
in interfaceConfigurationChildBuilder
-
memory
- Specified by:
memory
in interfaceConfigurationChildBuilder
-
getBuilder
-
build
- Specified by:
build
in interfaceConfigurationChildBuilder
-