Package com.zeroc.Ice

Interface NativePropertiesAdmin


public interface NativePropertiesAdmin
Interface implemented by the Property admin facet. It allows users to add and remove callbacks that notify the application when Ice properties are updated at run time.
  • Method Details

    • addUpdateCallback

      void addUpdateCallback(Consumer<Map<String,String>> callback)
      Adds a new update callback. The callback receives the updated properties each time the properties are updated.
      Parameters:
      callback - The new callback.
    • removeUpdateCallback

      void removeUpdateCallback(Consumer<Map<String,String>> callback)
      Removes a previously registered update callback.
      Parameters:
      callback - The callback to remove.