Interface ConfigurationReplicationConfig
- All Superinterfaces:
Config
The configuration for the replication of various configuration items.
If this is enabled then items such as topic views, metric collectors and security stores will be replicated across the cluster regardless of whether session and/or topic replication is enabled.
- Since:
- 6.3
-
Method Summary
Modifier and TypeMethodDescriptionboolean
Indicates whether the replication of configuration items is enabled regardless of whether topic and/or session replication is enabled.void
setEnabled
(boolean enabled) Set replication of configuration items enabled.
-
Method Details
-
isEnabled
boolean isEnabled()Indicates whether the replication of configuration items is enabled regardless of whether topic and/or session replication is enabled.- Returns:
- true if configuration replication is enabled, false if configuration replication is only enabled if session and/or topic replication is enabled
-
setEnabled
void setEnabled(boolean enabled) Set replication of configuration items enabled.The default is 'false', meaning that replication of configuration items would only occur if topic.and or session replication is enabled.
- Parameters:
enabled
- true to enable, false to indicate that configuration items would only be replicated if topic and/or session replication is enabled
-