public class StateTransferConfigurationBuilder extends Object implements Builder<StateTransferConfiguration>, ConfigurationBuilderInfo
Modifier and Type | Field and Description |
---|---|
protected ConfigurationBuilder |
builder |
Modifier and Type | Method and Description |
---|---|
AttributeSet |
attributes() |
StateTransferConfigurationBuilder |
awaitInitialTransfer(boolean b)
If
true , this will cause the first call to method CacheManager.getCache() on the joiner node to
block and wait until the joining is complete and the cache has finished receiving state from neighboring caches
(if fetchInMemoryState is enabled). |
Configuration |
build() |
StateTransferConfigurationBuilder |
chunkSize(int i)
The state will be transferred in batches of
chunkSize cache entries. |
ClusteringConfigurationBuilder |
clustering() |
StateTransferConfiguration |
create()
Create the configuration bean
|
CustomInterceptorsConfigurationBuilder |
customInterceptors()
Deprecated.
Since 10.0, custom interceptors support will be removed and only modules will be able to define interceptors
|
EncodingConfigurationBuilder |
encoding() |
ExpirationConfigurationBuilder |
expiration() |
StateTransferConfigurationBuilder |
fetchInMemoryState(boolean b)
If
true , the cache will fetch data from the neighboring caches when it starts up, so
the cache starts 'warm', although it will impact startup time. |
protected ConfigurationBuilder |
getBuilder() |
protected ClusteringConfigurationBuilder |
getClusteringBuilder() |
ElementDefinition |
getElementDefinition() |
HashConfigurationBuilder |
hash()
Allows fine-tuning of rehashing characteristics.
|
IndexingConfigurationBuilder |
indexing() |
InvocationBatchingConfigurationBuilder |
invocationBatching() |
L1ConfigurationBuilder |
l1()
Configures the L1 cache behavior in 'distributed' caches instances.
|
LockingConfigurationBuilder |
locking() |
MemoryConfigurationBuilder |
memory() |
PartitionHandlingConfigurationBuilder |
partitionHandling()
Configures how the cache will react to cluster partitions.
|
PersistenceConfigurationBuilder |
persistence() |
StateTransferConfigurationBuilder |
read(StateTransferConfiguration template)
Reads the configuration from an already created configuration bean into this builder.
|
SecurityConfigurationBuilder |
security() |
boolean |
simpleCache() |
ConfigurationChildBuilder |
simpleCache(boolean simpleCache) |
SitesConfigurationBuilder |
sites() |
StateTransferConfigurationBuilder |
stateTransfer()
Configures how state is transferred when a new cache joins the cluster.
|
StatisticsConfigurationBuilder |
statistics() |
ConfigurationChildBuilder |
template(boolean template) |
StateTransferConfigurationBuilder |
timeout(long l)
This is the maximum amount of time - in milliseconds - to wait for state from neighboring
caches, before throwing an exception and aborting startup.
|
StateTransferConfigurationBuilder |
timeout(long l,
TimeUnit unit)
This is the maximum amount of time - in milliseconds - to wait for state from neighboring
caches, before throwing an exception and aborting startup.
|
String |
toString() |
TransactionConfigurationBuilder |
transaction() |
UnsafeConfigurationBuilder |
unsafe() |
void |
validate()
Validate the data in this builder before building the configuration bean
|
void |
validate(GlobalConfiguration globalConfig) |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
getBuilderInfo, getChildrenInfo, getNewBuilderInfo
build, clustering, customInterceptors, encoding, expiration, indexing, invocationBatching, jmxStatistics, locking, memory, persistence, security, simpleCache, simpleCache, sites, statistics, template, transaction, unsafe
protected final ConfigurationBuilder builder
public AttributeSet attributes()
attributes
in interface BaseConfigurationInfo
AttributeSet
declared by the configuration.public ElementDefinition getElementDefinition()
getElementDefinition
in interface BaseConfigurationInfo
ElementDefinition
of the configuration.public StateTransferConfigurationBuilder fetchInMemoryState(boolean b)
true
, the cache will fetch data from the neighboring caches when it starts up, so
the cache starts 'warm', although it will impact startup time.
In distributed mode, state is transferred between running caches as well, as the ownership of
keys changes (e.g. because a cache left the cluster). Disabling this setting means a key will
sometimes have less than numOwner
owners.public StateTransferConfigurationBuilder awaitInitialTransfer(boolean b)
true
, this will cause the first call to method CacheManager.getCache()
on the joiner node to
block and wait until the joining is complete and the cache has finished receiving state from neighboring caches
(if fetchInMemoryState is enabled). This option applies to distributed and replicated caches only and is enabled
by default. Please note that setting this to false
will make the cache object available immediately but
any access to keys that should be available locally but are not yet transferred will actually cause a (transparent)
remote access. While this will not have any impact on the logic of your application it might impact performance.public StateTransferConfigurationBuilder chunkSize(int i)
chunkSize
cache entries.
If chunkSize is equal to Integer.MAX_VALUE, the state will be transferred in all at once. Not recommended.public StateTransferConfigurationBuilder timeout(long l)
public StateTransferConfigurationBuilder timeout(long l, TimeUnit unit)
public void validate()
Builder
validate
in interface Builder<StateTransferConfiguration>
public void validate(GlobalConfiguration globalConfig)
validate
in interface ConfigurationChildBuilder
public StateTransferConfiguration create()
Builder
create
in interface Builder<StateTransferConfiguration>
public StateTransferConfigurationBuilder read(StateTransferConfiguration template)
Builder
read
in interface Builder<StateTransferConfiguration>
template
- the configuration from which to "clone" this config if needed.public HashConfigurationBuilder hash()
ClusteringConfigurationChildBuilder
hash
in interface ClusteringConfigurationChildBuilder
public L1ConfigurationBuilder l1()
ClusteringConfigurationChildBuilder
l1
in interface ClusteringConfigurationChildBuilder
public StateTransferConfigurationBuilder stateTransfer()
ClusteringConfigurationChildBuilder
stateTransfer
in interface ClusteringConfigurationChildBuilder
public PartitionHandlingConfigurationBuilder partitionHandling()
ClusteringConfigurationChildBuilder
partitionHandling
in interface ClusteringConfigurationChildBuilder
protected ClusteringConfigurationBuilder getClusteringBuilder()
public ConfigurationChildBuilder template(boolean template)
template
in interface ConfigurationChildBuilder
public ConfigurationChildBuilder simpleCache(boolean simpleCache)
simpleCache
in interface ConfigurationChildBuilder
public boolean simpleCache()
simpleCache
in interface ConfigurationChildBuilder
public ClusteringConfigurationBuilder clustering()
clustering
in interface ConfigurationChildBuilder
@Deprecated public CustomInterceptorsConfigurationBuilder customInterceptors()
customInterceptors
in interface ConfigurationChildBuilder
public EncodingConfigurationBuilder encoding()
encoding
in interface ConfigurationChildBuilder
public ExpirationConfigurationBuilder expiration()
expiration
in interface ConfigurationChildBuilder
public IndexingConfigurationBuilder indexing()
indexing
in interface ConfigurationChildBuilder
public InvocationBatchingConfigurationBuilder invocationBatching()
invocationBatching
in interface ConfigurationChildBuilder
public StatisticsConfigurationBuilder statistics()
statistics
in interface ConfigurationChildBuilder
public PersistenceConfigurationBuilder persistence()
persistence
in interface ConfigurationChildBuilder
public LockingConfigurationBuilder locking()
locking
in interface ConfigurationChildBuilder
public SecurityConfigurationBuilder security()
security
in interface ConfigurationChildBuilder
public TransactionConfigurationBuilder transaction()
transaction
in interface ConfigurationChildBuilder
public UnsafeConfigurationBuilder unsafe()
unsafe
in interface ConfigurationChildBuilder
public SitesConfigurationBuilder sites()
sites
in interface ConfigurationChildBuilder
public MemoryConfigurationBuilder memory()
memory
in interface ConfigurationChildBuilder
protected ConfigurationBuilder getBuilder()
public Configuration build()
build
in interface ConfigurationChildBuilder
Copyright © 2021 JBoss by Red Hat. All rights reserved.