Class 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.
    • 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.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • IntegrityCheckerConfig

        public IntegrityCheckerConfig()
    • 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