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 Type
    Method
    Description
    void
    Callback invoked with settings have changed.
  • Method Details

    • configurationChanged

      void configurationChanged(Map<String,Object> properties)
      Callback invoked with settings have changed.

      Each key in the properties Map represents a unique setting key, such as KeyedSettingSpecifier.getKey(), and the associated Map value is the current setting value. The properties Map 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