Interface ConfigurationResourceObserver
-
- All Known Implementing Classes:
ConfigurationResourceConsumer,EventBusHandler
public interface ConfigurationResourceObserverInterface for classes interested in configuration resources- Author:
- https://github.com/mcweba [Marc-Andre Weber]
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidresourceChanged(String resourceUri, io.vertx.core.buffer.Buffer resource)Gets called when the resource with uriresourceUrihas been changed.voidresourceRemoved(String resourceUri)Gets called when the resource with uriresourceUrihas been removed.
-
-
-
Method Detail
-
resourceChanged
void resourceChanged(String resourceUri, io.vertx.core.buffer.Buffer resource)
Gets called when the resource with uriresourceUrihas been changed. The changed resource is provided in theresourceparameter.- Parameters:
resourceUri- the uri of the resource that has been changedresource- the resource including the changes
-
resourceRemoved
void resourceRemoved(String resourceUri)
Gets called when the resource with uriresourceUrihas been removed.- Parameters:
resourceUri- the uri of the resource that has been removed
-
-