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(@NonNull String key, @NonNull String group, @NonNull String newOwner, @NonNull Duration minIdleTime, @NonNull RecordId @NonNull ... recordIds) Change the ownership of a pending message to the given new consumer.StringRedisConnection.xClaim(@NonNull String key, @NonNull String group, @NonNull String newOwner, @NonNull RedisStreamCommands.XClaimOptions options) Change the ownership of a pending message to the given new consumer.default List<StringRecord> Read records from a stream within a specificRedisZSetCommands.Range.StringRedisConnection.xRange(@NonNull String key, @NonNull Range<String> range, @NonNull Limit limit) Read records from a stream within a specificRedisZSetCommands.Rangeapplying aLimit.DefaultStringRedisConnection.xReadAsString(StreamReadOptions readOptions, StreamOffset<String>... streams) default List<StringRecord> StringRedisConnection.xReadAsString(@NonNull StreamOffset<String> stream) Read records from one or moreStreamOffsets.default List<StringRecord> StringRedisConnection.xReadAsString(@NonNull StreamOffset<String>... streams) Read records from one or moreStreamOffsets.default List<StringRecord> StringRedisConnection.xReadAsString(@NonNull StreamReadOptions readOptions, @NonNull StreamOffset<String> stream) Read records from one or moreStreamOffsets.StringRedisConnection.xReadAsString(@NonNull StreamReadOptions readOptions, @NonNull StreamOffset<String>... streams) Read records from one or moreStreamOffsets.DefaultStringRedisConnection.xReadGroupAsString(Consumer consumer, StreamReadOptions readOptions, StreamOffset<String>... streams) default List<StringRecord> StringRedisConnection.xReadGroupAsString(@NonNull Consumer consumer, @NonNull StreamOffset<String> stream) Read records from one or moreStreamOffsets using a consumer group.default List<StringRecord> StringRedisConnection.xReadGroupAsString(@NonNull Consumer consumer, @NonNull StreamOffset<String> @NonNull ... streams) Read records from one or moreStreamOffsets using a consumer group.default List<StringRecord> StringRedisConnection.xReadGroupAsString(@NonNull Consumer consumer, @NonNull StreamReadOptions readOptions, @NonNull StreamOffset<String> stream) Read records from one or moreStreamOffsets using a consumer group.StringRedisConnection.xReadGroupAsString(@NonNull Consumer consumer, @NonNull StreamReadOptions readOptions, @NonNull StreamOffset<String> @NonNull ... streams) Read records from one or moreStreamOffsets using a consumer group.default List<StringRecord> Read records from a stream within a specificRedisZSetCommands.Rangein reverse order.StringRedisConnection.xRevRange(@NonNull String key, @NonNull Range<String> range, @NonNull 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(@NonNull StringRecord record) Append the givenStringRecordto the stream stored atRecord.getStream().StringRedisConnection.xAdd(@NonNull StringRecord record, @NonNull 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.