Implement notification on USK update
[jFCPlib.git] / src / main / java / net / pterodactylus / fcp / quelaton / UskSubscription.java
index 3ab2863..7fb8ad4 100644 (file)
@@ -8,5 +8,12 @@ package net.pterodactylus.fcp.quelaton;
 public interface UskSubscription {
 
        String getUri();
+       void onUpdate(UskUpdater uskUpdater);
+
+       interface UskUpdater {
+
+               void uskUpdated(int edition);
+
+       }
 
 }