X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;f=src%2Fmain%2Fjava%2Fnet%2Fpterodactylus%2Fsone%2Fcore%2FCoreListener.java;h=ca99e879f9aeb9dc724e97cba05fbbd6855d5a2b;hb=5b6767cdd9eece7d2a08f52016b3e35340d1f22f;hp=2547e63f1adcca67692b7f08a855326970df1f5f;hpb=bfe3df366bdbb6c283bdd698f4cf2e3b9c4e9d9c;p=Sone.git diff --git a/src/main/java/net/pterodactylus/sone/core/CoreListener.java b/src/main/java/net/pterodactylus/sone/core/CoreListener.java index 2547e63..ca99e87 100644 --- a/src/main/java/net/pterodactylus/sone/core/CoreListener.java +++ b/src/main/java/net/pterodactylus/sone/core/CoreListener.java @@ -55,4 +55,28 @@ public interface CoreListener extends EventListener { */ public void newReplyFound(Reply reply); + /** + * Notifies a listener that the given Sone is now marked as known. + * + * @param sone + * The known Sone + */ + public void markSoneKnown(Sone sone); + + /** + * Notifies a listener that the given post is now marked as known. + * + * @param post + * The known post + */ + public void markPostKnown(Post post); + + /** + * Notifies a listener that the given reply is now marked as known. + * + * @param reply + * The known reply + */ + public void markReplyKnown(Reply reply); + }