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

com.baidu.disconf.client.addons.properties.ReloadableProperties Maven / Gradle / Ivy

The newest version!
package com.baidu.disconf.client.addons.properties;

import java.util.Properties;

/**
 * For Properties maps that notify about changes.
 * Would extend interface java.util.Properties if it were an interface.
 * Classes implementing this interface should consider extending {@link DelegatingProperties}.
 */
public interface ReloadableProperties {

    Properties getProperties();

    void addReloadablePropertiesListener(IReloadablePropertiesListener l);

    boolean removeReloadablePropertiesListener(IReloadablePropertiesListener l);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy