Package org.redisson.client
Interface RedisPubSubListener<V>
-
- Type Parameters:
V
- value type
- All Superinterfaces:
EventListener
,MessageListener<V>
- All Known Implementing Classes:
BaseRedisPubSubListener
,PubSubMessageListener
,PubSubPatternMessageListener
,PubSubPatternStatusListener
,PubSubStatusListener
,SubscribeListener
public interface RedisPubSubListener<V> extends MessageListener<V>
- Author:
- Nikita Koksharov
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
onPatternMessage(CharSequence pattern, CharSequence channel, V message)
boolean
onStatus(PubSubType type, CharSequence channel)
-
Methods inherited from interface org.redisson.api.listener.MessageListener
onMessage
-
-
-
-
Method Detail
-
onStatus
boolean onStatus(PubSubType type, CharSequence channel)
-
onPatternMessage
void onPatternMessage(CharSequence pattern, CharSequence channel, V message)
-
-