Uses of Interface
org.redisson.api.listener.MessageListener
-
Packages that use MessageListener Package Description org.redisson org.redisson.api org.redisson.client -
-
Uses of MessageListener in org.redisson
Classes in org.redisson that implement MessageListener Modifier and Type Class Description class
PubSubMessageListener<V>
class
PubSubPatternMessageListener<V>
class
PubSubPatternStatusListener
class
PubSubStatusListener
Methods in org.redisson that return MessageListener Modifier and Type Method Description MessageListener<V>
PubSubMessageListener. getListener()
Methods in org.redisson with parameters of type MessageListener Modifier and Type Method Description <M> String
RedissonReliableTopic. addListener(Class<M> type, MessageListener<M> listener)
<M> int
RedissonTopic. addListener(Class<M> type, MessageListener<? extends M> listener)
<M> RFuture<String>
RedissonReliableTopic. addListenerAsync(Class<M> type, MessageListener<M> listener)
<M> RFuture<Integer>
RedissonTopic. addListenerAsync(Class<M> type, MessageListener<M> listener)
void
RedissonTopic. removeListener(MessageListener<?> listener)
RFuture<Void>
RedissonTopic. removeListenerAsync(MessageListener<?> listener)
Constructors in org.redisson with parameters of type MessageListener Constructor Description PubSubMessageListener(Class<V> type, MessageListener<V> listener, String name)
-
Uses of MessageListener in org.redisson.api
Methods in org.redisson.api with parameters of type MessageListener Modifier and Type Method Description <M> String
RReliableTopic. addListener(Class<M> type, MessageListener<M> listener)
Subscribes to this topic.<M> reactor.core.publisher.Mono<String>
RReliableTopicReactive. addListener(Class<M> type, MessageListener<M> listener)
Subscribes to this topic.<M> io.reactivex.rxjava3.core.Single<String>
RReliableTopicRx. addListener(Class<M> type, MessageListener<M> listener)
Subscribes to this topic.<M> int
RTopic. addListener(Class<M> type, MessageListener<? extends M> listener)
Subscribes to this topic.<M> reactor.core.publisher.Mono<Integer>
RTopicReactive. addListener(Class<M> type, MessageListener<M> listener)
Subscribes to this topic.<M> io.reactivex.rxjava3.core.Single<Integer>
RTopicRx. addListener(Class<M> type, MessageListener<M> listener)
Subscribes to this topic.<M> RFuture<String>
RReliableTopicAsync. addListenerAsync(Class<M> type, MessageListener<M> listener)
Subscribes to this topic.<M> RFuture<Integer>
RTopicAsync. addListenerAsync(Class<M> type, MessageListener<M> listener)
Subscribes to this topic.void
RTopic. removeListener(MessageListener<?> listener)
Removes the listener by its instancereactor.core.publisher.Mono<Void>
RTopicReactive. removeListener(MessageListener<?> listener)
Removes the listener byinstance
for listening this topicio.reactivex.rxjava3.core.Completable
RTopicRx. removeListener(MessageListener<?> listener)
Removes the listener byinstance
for listening this topicRFuture<Void>
RTopicAsync. removeListenerAsync(MessageListener<?> listener)
Removes the listener by its instance -
Uses of MessageListener in org.redisson.client
Subinterfaces of MessageListener in org.redisson.client Modifier and Type Interface Description interface
RedisPubSubListener<V>
Classes in org.redisson.client that implement MessageListener Modifier and Type Class Description class
BaseRedisPubSubListener
class
SubscribeListener
-