Uses of Interface
org.springframework.data.redis.listener.Topic
Packages that use Topic
Package
Description
Core package for integrating Redis with Spring concepts.
Base package for Redis message listener / pubsub container facility
Implementation classes for Spring Messaging integration.
Redis Pub/Sub support for Spring Messaging.
-
Uses of Topic in org.springframework.data.redis.core
Methods in org.springframework.data.redis.core with parameters of type TopicModifier and TypeMethodDescriptionFlux<? extends ReactiveSubscription.Message<String, V>> Flux<? extends ReactiveSubscription.Message<String, V>> Mono<Flux<? extends ReactiveSubscription.Message<String, V>>> ReactiveRedisOperations.listenToLater(Topic... topics) Mono<Flux<? extends ReactiveSubscription.Message<String, V>>> ReactiveRedisTemplate.listenToLater(Topic... topics) -
Uses of Topic in org.springframework.data.redis.listener
Classes in org.springframework.data.redis.listener that implement TopicModifier and TypeClassDescriptionclassChannel Topicimplementation mapping to a Redis channel.classMethods in org.springframework.data.redis.listener with parameters of type TopicModifier and TypeMethodDescriptionvoidRedisMessageListenerContainer.addMessageListener(MessageListener listener, Topic topic) Adds a message listener to the (potentially running) container.voidRedisMessageListenerContainer.removeMessageListener(MessageListener listener, Topic topic) Removes a message listener from the given topic.Method parameters in org.springframework.data.redis.listener with type arguments of type TopicModifier and TypeMethodDescriptionvoidRedisMessageListenerContainer.addMessageListener(MessageListener listener, Collection<? extends Topic> topics) Adds a message listener to the (potentially running) container.ReactiveRedisMessageListenerContainer.receive(Iterable<? extends Topic> topics, SubscriptionListener subscriptionListener) Subscribe to one or moreTopics and receive a stream ofReactiveSubscription.ChannelMessage.<C,B> Flux <ReactiveSubscription.Message<C, B>> ReactiveRedisMessageListenerContainer.receive(Iterable<? extends Topic> topics, RedisSerializationContext.SerializationPair<C> channelSerializer, RedisSerializationContext.SerializationPair<B> messageSerializer) Subscribe to one or moreTopics and receive a stream ofReactiveSubscription.ChannelMessage.<C,B> 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.<C,B> Mono <Flux<ReactiveSubscription.Message<C, B>>> ReactiveRedisMessageListenerContainer.receiveLater(Iterable<? extends Topic> topics, RedisSerializationContext.SerializationPair<C> channelSerializer, RedisSerializationContext.SerializationPair<B> messageSerializer) Subscribe to one or moreTopics and receive a stream ofReactiveSubscription.ChannelMessage.voidRedisMessageListenerContainer.removeMessageListener(MessageListener listener, Collection<? extends Topic> topics) Removes a message listener from the given topics.voidRedisMessageListenerContainer.setMessageListeners(Map<? extends MessageListener, Collection<? extends Topic>> listeners) Attaches the given listeners (and their topics) to the container. -
Uses of Topic in org.springframework.data.redis.listener.support
Classes in org.springframework.data.redis.listener.support with type parameters of type TopicModifier and TypeClassDescriptionclassCachingTopicResolver<T extends Topic>CachingTopicResolvervariant using aTopicResolverfor the actual resolution.interfaceTopicResolver<T extends Topic>Strategy for resolving a String destination name to an actual Redistopic.Classes in org.springframework.data.redis.listener.support that implement interfaces with type arguments of type TopicModifier and TypeClassDescriptionclassA simpleTopicResolverimplementation for channel and pattern resolution.Methods in org.springframework.data.redis.listener.support that return Topic -
Uses of Topic in org.springframework.data.redis.messaging
Classes in org.springframework.data.redis.messaging with type parameters of type Topic