Package com.hazelcast.config
Class IntegrityCheckerConfig
java.lang.Object
com.hazelcast.config.IntegrityCheckerConfig
Configures Module Integrity Checker. For now the only configuration
option is whether the integrity checker is enabled or not.
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionboolean
Returns {true} if the integrity checker is enabled.setEnabled
(boolean enabled) Sets the flag to enable or disable integrity checker.
-
Constructor Details
-
IntegrityCheckerConfig
public IntegrityCheckerConfig()
-
-
Method Details
-
isEnabled
public boolean isEnabled()Returns {true} if the integrity checker is enabled. Integrity checker performs checks to verify that the executable from which HazelcastInstance is launched contains all the necessary resources/META-INF/services files to operate correctly.- Returns:
- {true} if the integrity checker is enabled
- Since:
- 5.1
-
setEnabled
Sets the flag to enable or disable integrity checker. Integrity checker performs checks to verify that Integrity checker performs checks to verify that the executable from which HazelcastInstance is launched contains all the necessary resources/META-INF/services files to operate correctly. This operation is compute-intensive and therefore recommended being disabled for production clusters where built executable integrity is already verified.- Parameters:
enabled
- to enable or disable integrity checker- Returns:
- this config instance
- Since:
- 5.1
-