Class IntegrityCheckerConfig

java.lang.Object
com.hazelcast.config.IntegrityCheckerConfig

public class IntegrityCheckerConfig extends Object
Configures Module Integrity Checker. For now the only configuration option is whether the integrity checker is enabled or not.
  • 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

      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