Package net.solarnetwork.settings
Interface SettingsChangeObserver
public interface SettingsChangeObserver
API for something that observes changes to settings.
- Since:
- 1.54
- Version:
- 1.0
- Author:
- matt
-
Method Summary
Modifier and TypeMethodDescriptionvoidconfigurationChanged(Map<String, Object> properties) Callback invoked with settings have changed.
-
Method Details
-
configurationChanged
Callback invoked with settings have changed.Each key in the
propertiesMap represents a unique setting key, such asKeyedSettingSpecifier.getKey(), and the associated Map value is the current setting value. ThepropertiesMap may contain settings whose values have not changed since the last invocation of this method; that is to say a complete set of settings may be provided at each invocation of this method.- Parameters:
properties- the current settings
-