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, waitgetBuilderInfo, getChildrenInfo, getNewBuilderInfobuild, clustering, customInterceptors, encoding, expiration, indexing, invocationBatching, jmxStatistics, locking, memory, persistence, security, simpleCache, simpleCache, sites, statistics, template, transaction, unsafeprotected final ConfigurationBuilder builder
public AttributeSet attributes()
attributes in interface BaseConfigurationInfoAttributeSet declared by the configuration.public ElementDefinition getElementDefinition()
getElementDefinition in interface BaseConfigurationInfoElementDefinition 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()
Buildervalidate in interface Builder<StateTransferConfiguration>public void validate(GlobalConfiguration globalConfig)
validate in interface ConfigurationChildBuilderpublic StateTransferConfiguration create()
Buildercreate in interface Builder<StateTransferConfiguration>public StateTransferConfigurationBuilder read(StateTransferConfiguration template)
Builderread in interface Builder<StateTransferConfiguration>template - the configuration from which to "clone" this config if needed.public HashConfigurationBuilder hash()
ClusteringConfigurationChildBuilderhash in interface ClusteringConfigurationChildBuilderpublic L1ConfigurationBuilder l1()
ClusteringConfigurationChildBuilderl1 in interface ClusteringConfigurationChildBuilderpublic StateTransferConfigurationBuilder stateTransfer()
ClusteringConfigurationChildBuilderstateTransfer in interface ClusteringConfigurationChildBuilderpublic PartitionHandlingConfigurationBuilder partitionHandling()
ClusteringConfigurationChildBuilderpartitionHandling in interface ClusteringConfigurationChildBuilderprotected ClusteringConfigurationBuilder getClusteringBuilder()
public ConfigurationChildBuilder template(boolean template)
template in interface ConfigurationChildBuilderpublic ConfigurationChildBuilder simpleCache(boolean simpleCache)
simpleCache in interface ConfigurationChildBuilderpublic boolean simpleCache()
simpleCache in interface ConfigurationChildBuilderpublic ClusteringConfigurationBuilder clustering()
clustering in interface ConfigurationChildBuilder@Deprecated public CustomInterceptorsConfigurationBuilder customInterceptors()
customInterceptors in interface ConfigurationChildBuilderpublic EncodingConfigurationBuilder encoding()
encoding in interface ConfigurationChildBuilderpublic ExpirationConfigurationBuilder expiration()
expiration in interface ConfigurationChildBuilderpublic IndexingConfigurationBuilder indexing()
indexing in interface ConfigurationChildBuilderpublic InvocationBatchingConfigurationBuilder invocationBatching()
invocationBatching in interface ConfigurationChildBuilderpublic StatisticsConfigurationBuilder statistics()
statistics in interface ConfigurationChildBuilderpublic PersistenceConfigurationBuilder persistence()
persistence in interface ConfigurationChildBuilderpublic LockingConfigurationBuilder locking()
locking in interface ConfigurationChildBuilderpublic SecurityConfigurationBuilder security()
security in interface ConfigurationChildBuilderpublic TransactionConfigurationBuilder transaction()
transaction in interface ConfigurationChildBuilderpublic UnsafeConfigurationBuilder unsafe()
unsafe in interface ConfigurationChildBuilderpublic SitesConfigurationBuilder sites()
sites in interface ConfigurationChildBuilderpublic MemoryConfigurationBuilder memory()
memory in interface ConfigurationChildBuilderprotected ConfigurationBuilder getBuilder()
public Configuration build()
build in interface ConfigurationChildBuilderCopyright © 2021 JBoss by Red Hat. All rights reserved.