Package | Description |
---|---|
com.hazelcast.client.impl.clientside |
Contains most of the client side HazelcastInstance implementation functionality.
|
com.hazelcast.config |
Provides classes for configuring HazelcastInstance.
|
com.hazelcast.internal.config |
Contains functionality for Hazelcast configurations.
|
com.hazelcast.internal.dynamicconfig |
Classes related to Dynamic Configuration.
|
Modifier and Type | Method and Description |
---|---|
ScheduledExecutorConfig |
ClientDynamicClusterConfig.findScheduledExecutorConfig(String name) |
ScheduledExecutorConfig |
ClientDynamicClusterConfig.getScheduledExecutorConfig(String name) |
Modifier and Type | Method and Description |
---|---|
Map<String,ScheduledExecutorConfig> |
ClientDynamicClusterConfig.getScheduledExecutorConfigs() |
Modifier and Type | Method and Description |
---|---|
Config |
ClientDynamicClusterConfig.addScheduledExecutorConfig(ScheduledExecutorConfig scheduledExecutorConfig) |
Modifier and Type | Method and Description |
---|---|
Config |
ClientDynamicClusterConfig.setScheduledExecutorConfigs(Map<String,ScheduledExecutorConfig> scheduledExecutorConfigs) |
Modifier and Type | Method and Description |
---|---|
ScheduledExecutorConfig |
Config.findScheduledExecutorConfig(String name)
Returns a read-only scheduled executor configuration for the given name.
|
ScheduledExecutorConfig |
Config.getScheduledExecutorConfig(String name)
Returns the ScheduledExecutorConfig for the given name, creating one
if necessary and adding it to the collection of known configurations.
|
ScheduledExecutorConfig |
ScheduledExecutorConfig.setCapacity(int capacity)
Sets the capacity of the executor
The capacity represents the maximum number of tasks that a scheduler can have at any given point in time per partition.
|
ScheduledExecutorConfig |
ScheduledExecutorConfig.setDurability(int durability)
Sets the durability of the executor
The durability represents the number of replicas that exist in a cluster for any given partition-owned task.
|
ScheduledExecutorConfig |
ScheduledExecutorConfig.setMergePolicyConfig(MergePolicyConfig mergePolicyConfig)
Sets the
MergePolicyConfig for the scheduler. |
ScheduledExecutorConfig |
ScheduledExecutorConfig.setName(String name)
Sets the name of the executor task.
|
ScheduledExecutorConfig |
ScheduledExecutorConfig.setPoolSize(int poolSize)
Sets the number of executor threads per member for the executor.
|
ScheduledExecutorConfig |
ScheduledExecutorConfig.setQuorumName(String quorumName)
Sets the quorum name for operations.
|
Modifier and Type | Method and Description |
---|---|
Map<String,ScheduledExecutorConfig> |
Config.getScheduledExecutorConfigs()
Returns the map of scheduled executor configurations, mapped by config
name.
|
Modifier and Type | Method and Description |
---|---|
Config |
Config.addScheduledExecutorConfig(ScheduledExecutorConfig scheduledExecutorConfig)
Adds the scheduled executor configuration.
|
Modifier and Type | Method and Description |
---|---|
Config |
Config.setScheduledExecutorConfigs(Map<String,ScheduledExecutorConfig> scheduledExecutorConfigs)
Sets the map of scheduled executor configurations, mapped by config name.
|
Constructor and Description |
---|
ScheduledExecutorConfig(ScheduledExecutorConfig config) |
Modifier and Type | Method and Description |
---|---|
static void |
ConfigValidator.checkScheduledExecutorConfig(ScheduledExecutorConfig scheduledExecutorConfig,
SplitBrainMergePolicyProvider mergePolicyProvider)
Validates the given
ScheduledExecutorConfig . |
Modifier and Type | Method and Description |
---|---|
ScheduledExecutorConfig |
DynamicConfigurationAwareConfig.findScheduledExecutorConfig(String name) |
ScheduledExecutorConfig |
ClusterWideConfigurationService.findScheduledExecutorConfig(String name) |
ScheduledExecutorConfig |
ConfigurationService.findScheduledExecutorConfig(String name)
Finds existing Scheduled Executor config.
|
ScheduledExecutorConfig |
DynamicConfigurationAwareConfig.getScheduledExecutorConfig(String name) |
Modifier and Type | Method and Description |
---|---|
Map<String,ScheduledExecutorConfig> |
DynamicConfigurationAwareConfig.getScheduledExecutorConfigs() |
ConcurrentMap<String,ScheduledExecutorConfig> |
ClusterWideConfigurationService.getScheduledExecutorConfigs() |
Map<String,ScheduledExecutorConfig> |
ConfigurationService.getScheduledExecutorConfigs()
Returns all registered scheduled executor configurations.
|
Modifier and Type | Method and Description |
---|---|
Config |
DynamicConfigurationAwareConfig.addScheduledExecutorConfig(ScheduledExecutorConfig scheduledExecutorConfig) |
Modifier and Type | Method and Description |
---|---|
Config |
DynamicConfigurationAwareConfig.setScheduledExecutorConfigs(Map<String,ScheduledExecutorConfig> scheduledExecutorConfigs) |
Copyright © 2022 Hazelcast, Inc.. All Rights Reserved.