Package org.redisson.api.listener
Class BaseStatusListener
- java.lang.Object
-
- org.redisson.api.listener.BaseStatusListener
-
- All Implemented Interfaces:
EventListener
,StatusListener
public class BaseStatusListener extends Object implements StatusListener
Base status listener for Redis PubSub channel status changes- Author:
- Nikita Koksharov
- See Also:
RTopic
-
-
Constructor Summary
Constructors Constructor Description BaseStatusListener()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
onSubscribe(String channel)
Executes then Redisson successfully subscribed to channel.void
onUnsubscribe(String channel)
Executes then Redisson successfully unsubscribed from channel.
-
-
-
Method Detail
-
onSubscribe
public void onSubscribe(String channel)
Description copied from interface:StatusListener
Executes then Redisson successfully subscribed to channel. Invoked during re-connection or failover process- Specified by:
onSubscribe
in interfaceStatusListener
- Parameters:
channel
- to subscribe
-
onUnsubscribe
public void onUnsubscribe(String channel)
Description copied from interface:StatusListener
Executes then Redisson successfully unsubscribed from channel.- Specified by:
onUnsubscribe
in interfaceStatusListener
- Parameters:
channel
- to unsubscribe
-
-