Package | Description |
---|---|
com.hazelcast.config |
Provides classes for configuring HazelcastInstance.
|
Modifier and Type | Method and Description |
---|---|
ReplicatedMapConfig |
ReplicatedMapConfig.addEntryListenerConfig(EntryListenerConfig listenerConfig) |
ReplicatedMapConfig |
Config.findReplicatedMapConfig(String name)
Returns a read-only
ReplicatedMap configuration for
the given name. |
ReplicatedMapConfig |
ReplicatedMapConfig.getAsReadOnly()
Deprecated.
this method will be removed in 4.0; it is meant for internal usage only
|
ReplicatedMapConfig |
Config.getReplicatedMapConfig(String name)
Returns the ReplicatedMapConfig for the given name, creating one
if necessary and adding it to the collection of known configurations.
|
ReplicatedMapConfig |
ReplicatedMapConfig.setConcurrencyLevel(int concurrencyLevel)
Deprecated.
new implementation doesn't use mutexes
|
ReplicatedMapConfig |
ReplicatedMapConfig.setInMemoryFormat(InMemoryFormat inMemoryFormat)
Data type used to store entries.
|
ReplicatedMapConfig |
ReplicatedMapConfig.setListenerConfigs(List<ListenerConfig> listenerConfigs) |
ReplicatedMapConfig |
ReplicatedMapConfig.setMergePolicy(String mergePolicy)
Deprecated.
since 3.10, please use
setMergePolicyConfig(MergePolicyConfig) |
ReplicatedMapConfig |
ReplicatedMapConfig.setMergePolicyConfig(MergePolicyConfig mergePolicyConfig)
Sets the
MergePolicyConfig for this replicated map. |
ReplicatedMapConfig |
ReplicatedMapConfig.setName(String name)
Sets the name of this
ReplicatedMap . |
ReplicatedMapConfig |
ReplicatedMapConfig.setQuorumName(String quorumName)
Sets the quorum name for operations.
|
ReplicatedMapConfig |
ReplicatedMapConfig.setReplicationDelayMillis(long replicationDelayMillis)
Deprecated.
since new implementation will route puts to the partition owner nodes,
caching won't help replication speed because most of the time subsequent puts will end up in different nodes
|
ReplicatedMapConfig |
ReplicatedMapConfig.setReplicatorExecutorService(ScheduledExecutorService replicatorExecutorService)
Deprecated.
new implementation doesn't use executor service for replication
|
ReplicatedMapConfig |
ReplicatedMapConfig.setStatisticsEnabled(boolean statisticsEnabled)
Sets statistics to enabled or disabled for this replicated map.
|
Modifier and Type | Method and Description |
---|---|
Map<String,ReplicatedMapConfig> |
Config.getReplicatedMapConfigs()
Returns the map of
ReplicatedMap
configurations, mapped by config name. |
Modifier and Type | Method and Description |
---|---|
Config |
Config.addReplicatedMapConfig(ReplicatedMapConfig replicatedMapConfig)
Adds the replicated map configuration.
|
Modifier and Type | Method and Description |
---|---|
Config |
Config.setReplicatedMapConfigs(Map<String,ReplicatedMapConfig> replicatedMapConfigs)
Sets the map of
ReplicatedMap configurations,
mapped by config name. |
Constructor and Description |
---|
ReplicatedMapConfig(ReplicatedMapConfig replicatedMapConfig) |
Copyright © 2018 Hazelcast, Inc.. All rights reserved.