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

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

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


/**
 * A callback which is executed when a value for a configuration changes
 * at runtime
 *
 * @author Christoph Schäbel
 * @since 3.0
 */
public interface ValueChangedCallback {

    /**
     * This method gets executed when the valuef or a configuration changes
     *
     * @param newValue the new value
     */
    void valueChanged(T newValue);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy