diff --git a/src/main/java/org/redisson/core/RTopicAsync.java b/src/main/java/org/redisson/core/RTopicAsync.java index a918fe4a9..1bef072e5 100644 --- a/src/main/java/org/redisson/core/RTopicAsync.java +++ b/src/main/java/org/redisson/core/RTopicAsync.java @@ -34,20 +34,4 @@ public interface RTopicAsync { */ Future publishAsync(M message); - /** - * Subscribes to status changes of this topic - * - * @param listener - * @return - * @see org.redisson.core.StatusListener - */ - int addListener(StatusListener listener); - - /** - * Removes the listener by id for listening this topic - * - * @param listenerId - */ - void removeListener(int listenerId); - }