Uses of Interface
org.springframework.data.redis.connection.SubscriptionListener
Packages that use 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
Fields in org.springframework.data.redis.connection declared as SubscriptionListenerModifier and TypeFieldDescriptionstatic final SubscriptionListenerSubscriptionListener.NO_OP_SUBSCRIPTION_LISTENEREmptySubscriptionListener.Methods in org.springframework.data.redis.connection with parameters of type SubscriptionListenerModifier 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
Methods in org.springframework.data.redis.listener with parameters of type SubscriptionListenerModifier and TypeMethodDescriptionreactor.core.publisher.Flux<ReactiveSubscription.Message<String,String>> ReactiveRedisMessageListenerContainer.receive(Iterable<? extends Topic> topics, SubscriptionListener subscriptionListener) Subscribe to one or moreTopics 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 moreTopics and receive a stream ofReactiveSubscription.ChannelMessage.