Package com.hazelcast.config
Class IntegrityCheckerConfig
- java.lang.Object
-
- com.hazelcast.config.IntegrityCheckerConfig
-
public class IntegrityCheckerConfig extends java.lang.Object
Configures Module Integrity Checker. For now the only configuration option is whether the integrity checker is enabled or not.
-
-
Constructor Summary
Constructors Constructor Description IntegrityCheckerConfig()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
isEnabled()
Returns {true} if the integrity checker is enabled.IntegrityCheckerConfig
setEnabled(boolean enabled)
Sets the flag to enable or disable integrity checker.
-
-
-
Method Detail
-
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
public IntegrityCheckerConfig setEnabled(boolean enabled)
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
-
-