Interface PropertiesChangeListener

Functional Interface:
This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.

@FunctionalInterface public interface PropertiesChangeListener
Implement this interface if you want to be notified if configuration changes. Register in configuration with addProperitesChangeListener.
  • Method Details

    • propertiesChange

      void propertiesChange(Map<String,Pair<Object,Object>> events)
      Properties have changed.
      Parameters:
      events - key is property name, pair contains old and new value.