Interface ConfigurationResourceObserver

  • All Known Implementing Classes:
    ConfigurationResourceConsumer, EventBusHandler

    public interface ConfigurationResourceObserver
    Interface for classes interested in configuration resources
    Author:
    https://github.com/mcweba [Marc-Andre Weber]
    • Method Detail

      • resourceChanged

        void resourceChanged​(String resourceUri,
                             io.vertx.core.buffer.Buffer resource)
        Gets called when the resource with uri resourceUri has been changed. The changed resource is provided in the resource parameter.
        Parameters:
        resourceUri - the uri of the resource that has been changed
        resource - the resource including the changes
      • resourceRemoved

        void resourceRemoved​(String resourceUri)
        Gets called when the resource with uri resourceUri has been removed.
        Parameters:
        resourceUri - the uri of the resource that has been removed