Interface RegistryListener
-
public interface RegistryListener
Receives notifications of configuration changes in thre registry.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidhandleConfigurationChangeEvent(ConfigRegistry registry, EventType eventType, String propertyName, Object propertyValue, Object oldValue)Notify the object that there has been a configuration change.
-
-
-
Method Detail
-
handleConfigurationChangeEvent
void handleConfigurationChangeEvent(ConfigRegistry registry, EventType eventType, String propertyName, Object propertyValue, Object oldValue)
Notify the object that there has been a configuration change. The method may be annotated by the@AsyncListenerannotation. Which means the method will be executed asynchronously.- Parameters:
registry- the registry that was changedpropertyName- the property what was changedpropertyValue- the value the property was changed tooldValue- The value the property had before
-
-