All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.hivemq.spi.services.configuration.GeneralConfigurationService Maven / Gradle / Ivy

There is a newer version: 3.4.4
Show newest version
package com.hivemq.spi.services.configuration;

/**
 * A Configuration service which allows to get information about the current General configuration
 * and allows to change the global General configuration of HiveMQ at runtime.
 *
 * @author Christoph Schäbel
 * @since 3.0
 */
public interface GeneralConfigurationService {

    /**
     * @return true if the update check is enabled, false otherwise
     */
    boolean updateCheckEnabled();

    void setUpdateCheckEnabled(boolean updateCheckEnabled);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy