Uses of Class
org.springframework.data.redis.connection.stream.Consumer
Packages that use Consumer
Package
Description
Connection package providing low-level abstractions for interacting with the various Redis 'drivers'/libraries.
Data structures and interfaces to interact with Redis Streams.
Core package for integrating Redis with Spring concepts.
-
Uses of Consumer in org.springframework.data.redis.connection
Methods in org.springframework.data.redis.connection that return ConsumerMethods in org.springframework.data.redis.connection with parameters of type ConsumerModifier and TypeMethodDescriptionApplies aConsumer.ReactiveStreamCommands.GroupCommand.deleteConsumer(Consumer consumer) default BooleanDefaultedRedisConnection.xGroupDelConsumer(byte[] key, Consumer consumer) Deprecated.DefaultStringRedisConnection.xGroupDelConsumer(byte[] key, Consumer consumer) DefaultStringRedisConnection.xGroupDelConsumer(String key, Consumer consumer) ReactiveStreamCommands.xGroupDelConsumer(ByteBuffer key, Consumer consumer) Delete a consumer from a consumer group.RedisStreamCommands.xGroupDelConsumer(byte[] key, Consumer consumer) Delete a consumer from a consumer group.StringRedisConnection.xGroupDelConsumer(String key, Consumer consumer) Delete a consumer from a consumer group.default Mono<PendingMessages>ReactiveStreamCommands.xPending(ByteBuffer key, Consumer consumer) Obtained detailed information about all pending messages for a givenConsumer.default Mono<PendingMessages>ReactiveStreamCommands.xPending(ByteBuffer key, Consumer consumer, Range<?> range, Long count) default PendingMessagesObtained detailed information about all pending messages for a givenConsumer.default PendingMessagesdefault List<ByteRecord>DefaultedRedisConnection.xReadGroup(Consumer consumer, StreamOffset<byte[]>... streams) Deprecated.in favor ofRedisCommandsProvider.streamCommands()}.default List<ByteRecord>DefaultedRedisConnection.xReadGroup(Consumer consumer, StreamReadOptions readOptions, StreamOffset<byte[]>... streams) Deprecated.in favor ofRedisCommandsProvider.streamCommands()}.DefaultStringRedisConnection.xReadGroup(Consumer consumer, StreamReadOptions readOptions, StreamOffset<byte[]>... streams) default Flux<ByteBufferRecord>ReactiveStreamCommands.xReadGroup(Consumer consumer, StreamOffset<ByteBuffer>... streams) Read records from one or moreStreamOffsets using a consumer group.default Flux<ByteBufferRecord>ReactiveStreamCommands.xReadGroup(Consumer consumer, StreamReadOptions readOptions, StreamOffset<ByteBuffer>... streams) Read records from one or moreStreamOffsets using a consumer group.default List<ByteRecord>RedisStreamCommands.xReadGroup(Consumer consumer, StreamOffset<byte[]>... streams) Read records from one or moreStreamOffsets using a consumer group.RedisStreamCommands.xReadGroup(Consumer consumer, StreamReadOptions readOptions, StreamOffset<byte[]>... streams) Read records from one or moreStreamOffsets using a consumer group.DefaultStringRedisConnection.xReadGroupAsString(Consumer consumer, StreamReadOptions readOptions, StreamOffset<String>... streams) default List<StringRecord>StringRedisConnection.xReadGroupAsString(Consumer consumer, StreamOffset<String> stream) Read records from one or moreStreamOffsets using a consumer group.default List<StringRecord>StringRedisConnection.xReadGroupAsString(Consumer consumer, StreamOffset<String>... streams) Read records from one or moreStreamOffsets using a consumer group.default List<StringRecord>StringRedisConnection.xReadGroupAsString(Consumer consumer, StreamReadOptions readOptions, StreamOffset<String> stream) Read records from one or moreStreamOffsets using a consumer group.StringRedisConnection.xReadGroupAsString(Consumer consumer, StreamReadOptions readOptions, StreamOffset<String>... streams) Read records from one or moreStreamOffsets using a consumer group.Constructors in org.springframework.data.redis.connection with parameters of type ConsumerModifierConstructorDescriptionReadCommand(List<StreamOffset<ByteBuffer>> streamOffsets, StreamReadOptions readOptions, Consumer consumer) -
Uses of Consumer in org.springframework.data.redis.connection.stream
Methods in org.springframework.data.redis.connection.stream that return ConsumerModifier and TypeMethodDescriptionstatic ConsumerCreate a new consumer.PendingMessage.getConsumer()TheConsumerto acknowledge the message.Constructors in org.springframework.data.redis.connection.stream with parameters of type ConsumerModifierConstructorDescriptionPendingMessage(RecordId id, Consumer consumer, Duration elapsedTimeSinceLastDelivery, long totalDeliveryCount) -
Uses of Consumer in org.springframework.data.redis.core
Methods in org.springframework.data.redis.core with parameters of type ConsumerModifier and TypeMethodDescriptionBoundStreamOperations.deleteConsumer(Consumer consumer) Delete a consumer from a consumer group.ReactiveStreamOperations.deleteConsumer(K key, Consumer consumer) Delete a consumer from a consumer group.StreamOperations.deleteConsumer(K key, Consumer consumer) Delete a consumer from a consumer group.default Mono<PendingMessages>Obtained detailed information about all pending messages for a givenConsumer.default PendingMessagesObtained detailed information about all pending messages for a givenConsumer.BoundStreamOperations.read(Consumer consumer, ReadOffset readOffset) Read records starting fromReadOffset. using a consumer group.BoundStreamOperations.read(Consumer consumer, StreamReadOptions readOptions, ReadOffset readOffset) Read records starting fromReadOffset. using a consumer group.default <V> Flux<ObjectRecord<K,V>> ReactiveStreamOperations.read(Class<V> targetType, Consumer consumer, StreamOffset<K>... streams) Read records from one or moreStreamOffsets using a consumer group asObjectRecord.default <V> Flux<ObjectRecord<K,V>> ReactiveStreamOperations.read(Class<V> targetType, Consumer consumer, StreamReadOptions readOptions, StreamOffset<K>... streams) Read records from one or moreStreamOffsets using a consumer group asObjectRecord.ReactiveStreamOperations.read(Consumer consumer, StreamOffset<K>... streams) Read records from one or moreStreamOffsets using a consumer group.ReactiveStreamOperations.read(Consumer consumer, StreamReadOptions readOptions, StreamOffset<K>... streams) Read records from one or moreStreamOffsets using a consumer group.default <V> List<ObjectRecord<K,V>> StreamOperations.read(Class<V> targetType, Consumer consumer, StreamOffset<K>... streams) Read records from one or moreStreamOffsets using a consumer group asObjectRecord.default <V> List<ObjectRecord<K,V>> StreamOperations.read(Class<V> targetType, Consumer consumer, StreamReadOptions readOptions, StreamOffset<K>... streams) Read records from one or moreStreamOffsets using a consumer group asObjectRecord.StreamOperations.read(Consumer consumer, StreamOffset<K>... streams) Read records from one or moreStreamOffsets using a consumer group.StreamOperations.read(Consumer consumer, StreamReadOptions readOptions, StreamOffset<K>... streams) Read records from one or moreStreamOffsets using a consumer group. -
Uses of Consumer in org.springframework.data.redis.stream
Methods in org.springframework.data.redis.stream that return ConsumerModifier and TypeMethodDescriptionStreamMessageListenerContainer.ConsumerStreamReadRequest.getConsumer()Methods in org.springframework.data.redis.stream with parameters of type ConsumerModifier and TypeMethodDescriptionConfigure aConsumerto consume stream messages within a consumer group.Configure aConsumerto consume stream messages within a consumer group.default SubscriptionStreamMessageListenerContainer.receive(Consumer consumer, StreamOffset<K> streamOffset, StreamListener<K, V> listener) Register a new subscription for a Redis Stream.StreamReceiver.receive(Consumer consumer, StreamOffset<K> streamOffset) default SubscriptionStreamMessageListenerContainer.receiveAutoAck(Consumer consumer, StreamOffset<K> streamOffset, StreamListener<K, V> listener) Register a new subscription for a Redis Stream.StreamReceiver.receiveAutoAck(Consumer consumer, StreamOffset<K> streamOffset)
RedisCommandsProvider.streamCommands()}.