Uses of Interface
org.springframework.data.redis.connection.stream.ByteRecord
Packages that use ByteRecord
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 ByteRecord in org.springframework.data.redis.connection
Methods in org.springframework.data.redis.connection that return types with arguments of type ByteRecordModifier and TypeMethodDescriptiondefault List<ByteRecord> DefaultedRedisConnection.xClaim(byte[] key, String group, String newOwner, RedisStreamCommands.XClaimOptions options) Deprecated.DefaultStringRedisConnection.xClaim(byte[] key, String group, String newOwner, RedisStreamCommands.XClaimOptions options) default List<@NonNull ByteRecord> RedisStreamCommands.xClaim(byte @NonNull [] 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.List<@NonNull ByteRecord> RedisStreamCommands.xClaim(byte @NonNull [] 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<ByteRecord> Deprecated.in favor ofRedisCommandsProvider.streamCommands()}.default List<ByteRecord> Deprecated.in favor ofRedisCommandsProvider.streamCommands()}.default List<@NonNull ByteRecord> List<@NonNull ByteRecord> RedisStreamCommands.xRange(byte @NonNull [] key, @NonNull Range<@NonNull String> range, @NonNull Limit limit) default List<ByteRecord> DefaultedRedisConnection.xRead(StreamOffset<byte[]>... streams) Deprecated.in favor ofRedisCommandsProvider.streamCommands()}.default List<ByteRecord> DefaultedRedisConnection.xRead(StreamReadOptions readOptions, StreamOffset<byte[]>... streams) Deprecated.in favor ofRedisCommandsProvider.streamCommands()}.DefaultStringRedisConnection.xRead(StreamReadOptions readOptions, StreamOffset<byte[]>... streams) List<@NonNull ByteRecord> RedisStreamCommands.xRead(@NonNull StreamReadOptions readOptions, @NonNull StreamOffset<byte[]> @NonNull ... streams) Read records from one or moreStreamOffsets.default List<@NonNull ByteRecord> RedisStreamCommands.xRead(StreamOffset<byte @NonNull []> @NonNull ... streams) Read records from one or moreStreamOffsets.default 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 List<@NonNull ByteRecord> RedisStreamCommands.xReadGroup(@NonNull Consumer consumer, @NonNull StreamOffset<byte[]> @NonNull ... streams) Read records from one or moreStreamOffsets using a consumer group.List<@NonNull ByteRecord> RedisStreamCommands.xReadGroup(@NonNull Consumer consumer, @NonNull StreamReadOptions readOptions, @NonNull StreamOffset<byte[]> @NonNull ... streams) Read records from one or moreStreamOffsets using a consumer group.default List<ByteRecord> Deprecated.in favor ofRedisCommandsProvider.streamCommands()}.default List<ByteRecord> Deprecated.in favor ofRedisCommandsProvider.streamCommands()}.default List<@NonNull ByteRecord> Read records from a stream within a specificRangein reverse order.List<@NonNull ByteRecord> -
Uses of ByteRecord in org.springframework.data.redis.connection.stream
Methods in org.springframework.data.redis.connection.stream that return ByteRecordModifier and TypeMethodDescriptionstatic ByteRecordConvert a binaryMapRecordinto aByteRecord.static ByteRecordCreate a newByteRecordfor the given raw field/value pairs.default ByteRecordMapRecord.serialize(@Nullable RedisSerializer<?> serializer) default ByteRecordMapRecord.serialize(@Nullable RedisSerializer<? super S> streamSerializer, @Nullable RedisSerializer<? super K> fieldSerializer, @Nullable RedisSerializer<? super V> valueSerializer) Serializekeywith the streamSerializer, field names with the fieldSerializer and values with the valueSerializer.ByteRecord.withStreamKey(byte[] key) Create a newByteRecordwith the associated stream key. -
Uses of ByteRecord in org.springframework.data.redis.core
Methods in org.springframework.data.redis.core with parameters of type ByteRecordModifier and TypeMethodDescriptionStreamOperations.deserializeRecord(@NonNull ByteRecord record) Deserialize aByteRecordusing the configured serializers into aMapRecord.
RedisCommandsProvider.streamCommands()}.