Add method to notify sink when a source has updated its metadata.
[sonitus.git] / src / main / java / net / pterodactylus / sonitus / data / Sink.java
index 5ca6a79..7f6ce6b 100644 (file)
@@ -36,4 +36,7 @@ public interface Sink {
         */
        void connect(Source source) throws ConnectException;
 
+       /** Notifies the sink that a source has updated its metadata. */
+       void metadataUpdated();
+
 }