
com.baidu.disconf.client.addons.properties.ReloadableProperties Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of disconf-client Show documentation
Show all versions of disconf-client Show documentation
https://github.com/knightliao/disconf/tree/master/disconf-client
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