Uses of Interface
org.redisson.client.RedisPubSubListener
-
Packages that use RedisPubSubListener Package Description org.redisson org.redisson.client org.redisson.pubsub -
-
Uses of RedisPubSubListener in org.redisson
Classes in org.redisson that implement RedisPubSubListener Modifier and Type Class Description class
PubSubMessageListener<V>
class
PubSubPatternMessageListener<V>
class
PubSubPatternStatusListener
class
PubSubStatusListener
Methods in org.redisson with parameters of type RedisPubSubListener Modifier and Type Method Description protected RFuture<Integer>
RedissonTopic. addListenerAsync(RedisPubSubListener<?> pubSubListener)
-
Uses of RedisPubSubListener in org.redisson.client
Classes in org.redisson.client that implement RedisPubSubListener Modifier and Type Class Description class
BaseRedisPubSubListener
class
SubscribeListener
Methods in org.redisson.client with parameters of type RedisPubSubListener Modifier and Type Method Description void
RedisPubSubConnection. addListener(RedisPubSubListener<?> listener)
void
RedisPubSubConnection. removeListener(RedisPubSubListener<?> listener)
-
Uses of RedisPubSubListener in org.redisson.pubsub
Methods in org.redisson.pubsub that return types with arguments of type RedisPubSubListener Modifier and Type Method Description Queue<RedisPubSubListener<?>>
PubSubConnectionEntry. getListeners(ChannelName channelName)
Methods in org.redisson.pubsub with parameters of type RedisPubSubListener Modifier and Type Method Description void
PubSubConnectionEntry. addListener(ChannelName channelName, RedisPubSubListener<?> listener)
RFuture<Collection<PubSubConnectionEntry>>
PublishSubscribeService. psubscribe(ChannelName channelName, Codec codec, RedisPubSubListener<?>... listeners)
io.netty.channel.ChannelFuture
PubSubConnectionEntry. punsubscribe(ChannelName channel, RedisPubSubListener<?> listener)
void
PubSubConnectionEntry. removeListener(ChannelName channelName, RedisPubSubListener<?> listener)
RFuture<PubSubConnectionEntry>
PublishSubscribeService. subscribe(Codec codec, String channelName, AsyncSemaphore semaphore, RedisPubSubListener<?>... listeners)
RFuture<PubSubConnectionEntry>
PublishSubscribeService. subscribe(Codec codec, ChannelName channelName, RedisPubSubListener<?>... listeners)
io.netty.channel.ChannelFuture
PubSubConnectionEntry. unsubscribe(ChannelName channel, RedisPubSubListener<?> listener)
-