Uses of Interface
org.springframework.data.redis.connection.SubscriptionListener
Package
Description
Connection package providing low-level abstractions for interacting with the various Redis 'drivers'/libraries.
Base package for Redis message listener / pubsub container facility
-
Uses of SubscriptionListener in org.springframework.data.redis.connection
Modifier and TypeFieldDescriptionstatic final SubscriptionListener
SubscriptionListener.NO_OP_SUBSCRIPTION_LISTENER
EmptySubscriptionListener
.Modifier and TypeMethodDescriptionreactor.core.publisher.Mono<ReactiveSubscription>
ReactivePubSubCommands.createSubscription
(SubscriptionListener subscriptionListener) Creates a subscription for this connection. -
Uses of SubscriptionListener in org.springframework.data.redis.listener
Modifier and TypeMethodDescriptionreactor.core.publisher.Flux<ReactiveSubscription.Message<String,
String>> ReactiveRedisMessageListenerContainer.receive
(Iterable<? extends Topic> topics, SubscriptionListener subscriptionListener) Subscribe to one or moreTopic
s and receive a stream ofReactiveSubscription.ChannelMessage
.<C,
B> reactor.core.publisher.Flux<ReactiveSubscription.Message<C, B>> ReactiveRedisMessageListenerContainer.receive
(Iterable<? extends Topic> topics, RedisSerializationContext.SerializationPair<C> channelSerializer, RedisSerializationContext.SerializationPair<B> messageSerializer, SubscriptionListener subscriptionListener) Subscribe to one or moreTopic
s and receive a stream ofReactiveSubscription.ChannelMessage
.