Uses of Interface
org.springframework.data.redis.connection.stream.StringRecord
Packages that use StringRecord
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.
-
Uses of StringRecord in org.springframework.data.redis.connection
Methods in org.springframework.data.redis.connection that return types with arguments of type StringRecordModifier and TypeMethodDescriptionDefaultStringRedisConnection.xClaim(String key, String group, String consumer, RedisStreamCommands.XClaimOptions options) default List<StringRecord>StringRedisConnection.xClaim(String key, String group, String newOwner, Duration minIdleTime, RecordId... recordIds) Change the ownership of a pending message to the given new consumer.StringRedisConnection.xClaim(String key, String group, String newOwner, RedisStreamCommands.XClaimOptions options) Change the ownership of a pending message to the given new consumer.DefaultStringRedisConnection.xRange(String key, org.springframework.data.domain.Range<String> range, Limit limit) default List<StringRecord>Read records from a stream within a specificRedisZSetCommands.Range.StringRedisConnection.xRange(String key, org.springframework.data.domain.Range<String> range, Limit limit) Read records from a stream within a specificRedisZSetCommands.Rangeapplying aLimit.DefaultStringRedisConnection.xReadAsString(StreamReadOptions readOptions, StreamOffset<String>... streams) default List<StringRecord>StringRedisConnection.xReadAsString(StreamOffset<String> stream) Read records from one or moreStreamOffsets.default List<StringRecord>StringRedisConnection.xReadAsString(StreamOffset<String>... streams) Read records from one or moreStreamOffsets.default List<StringRecord>StringRedisConnection.xReadAsString(StreamReadOptions readOptions, StreamOffset<String> stream) Read records from one or moreStreamOffsets.StringRedisConnection.xReadAsString(StreamReadOptions readOptions, StreamOffset<String>... streams) Read records from one or moreStreamOffsets.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.DefaultStringRedisConnection.xRevRange(String key, org.springframework.data.domain.Range<String> range, Limit limit) default List<StringRecord>Read records from a stream within a specificRedisZSetCommands.Rangein reverse order.StringRedisConnection.xRevRange(String key, org.springframework.data.domain.Range<String> range, Limit limit) Read records from a stream within a specificRedisZSetCommands.Rangeapplying aLimitin reverse order.Methods in org.springframework.data.redis.connection with parameters of type StringRecordModifier and TypeMethodDescriptionDefaultStringRedisConnection.xAdd(StringRecord record, RedisStreamCommands.XAddOptions options) default RecordIdStringRedisConnection.xAdd(StringRecord record) Append the givenStringRecordto the stream stored atRecord.getStream().StringRedisConnection.xAdd(StringRecord record, RedisStreamCommands.XAddOptions options) Append the givenStringRecordto the stream stored atRecord.getStream(). -
Uses of StringRecord in org.springframework.data.redis.connection.stream
Methods in org.springframework.data.redis.connection.stream that return StringRecordModifier and TypeMethodDescriptionstatic StringRecordstatic StringRecordCreate aStringRecord.static StringRecordCreate a newByteBufferRecordfor the given raw field/value pairs.StringRecord.withStreamKey(String key) Create a newStringRecordwith the associated stream key.