Uses of Enum Class
org.springframework.data.redis.connection.ReactiveListCommands.Direction
Packages that use ReactiveListCommands.Direction
Package
Description
Connection package providing low-level abstractions for interacting with the various Redis 'drivers'/libraries.
Core package for integrating Redis with Spring concepts.
-
Uses of ReactiveListCommands.Direction in org.springframework.data.redis.connection
Methods in org.springframework.data.redis.connection that return ReactiveListCommands.DirectionModifier and TypeMethodDescriptionReactiveListCommands.Direction.first()Alias forLEFT.ReactiveListCommands.BPopCommand.getDirection()ReactiveListCommands.PopCommand.getDirection()ReactiveListCommands.PushCommand.getDirection()ReactiveListCommands.LMoveCommand.getFrom()ReactiveListCommands.LMoveCommand.getTo()ReactiveListCommands.Direction.last()Alias forRIGHT.Returns the enum constant of this class with the specified name.static ReactiveListCommands.Direction[]ReactiveListCommands.Direction.values()Returns an array containing the constants of this enum class, in the order they are declared.Methods in org.springframework.data.redis.connection with parameters of type ReactiveListCommands.DirectionModifier and TypeMethodDescriptiondefault reactor.core.publisher.Mono<ByteBuffer>ReactiveListCommands.bLMove(ByteBuffer sourceKey, ByteBuffer destinationKey, ReactiveListCommands.Direction from, ReactiveListCommands.Direction to, Duration timeout) Atomically returns and removes the first/last element (head/tail depending on thefromargument) of the list stored atsourceKey, and pushes the element at the first/last element (head/tail depending on thetoargument) of the list stored atdestinationKey.ReactiveListCommands.LMoveCommand.from(ByteBuffer sourceKey, ReactiveListCommands.Direction sourceDirection) Creates a newReactiveListCommands.LMoveCommandgiven asourceKey.default reactor.core.publisher.Mono<ByteBuffer>ReactiveListCommands.lMove(ByteBuffer sourceKey, ByteBuffer destinationKey, ReactiveListCommands.Direction from, ReactiveListCommands.Direction to) Atomically returns and removes the first/last element (head/tail depending on thefromargument) of the list stored atsourceKey, and pushes the element at the first/last element (head/tail depending on thetoargument) of the list stored atdestinationKey.ReactiveListCommands.LMoveCommand.to(ByteBuffer destinationKey, ReactiveListCommands.Direction direction) Applies thedestinationKey.Constructors in org.springframework.data.redis.connection with parameters of type ReactiveListCommands.DirectionModifierConstructorDescriptionLMoveCommand(ByteBuffer sourceKey, ByteBuffer destinationKey, ReactiveListCommands.Direction from, ReactiveListCommands.Direction to) -
Uses of ReactiveListCommands.Direction in org.springframework.data.redis.core
Methods in org.springframework.data.redis.core with parameters of type ReactiveListCommands.DirectionModifier and TypeMethodDescriptionreactor.core.publisher.Mono<V>ReactiveListOperations.move(K sourceKey, ReactiveListCommands.Direction from, K destinationKey, ReactiveListCommands.Direction to) Atomically returns and removes the first/last element (head/tail depending on thefromargument) of the list stored atsourceKey, and pushes the element at the first/last element (head/tail depending on thetoargument) of the list stored atdestinationKey.reactor.core.publisher.Mono<V>ReactiveListOperations.move(K sourceKey, ReactiveListCommands.Direction from, K destinationKey, ReactiveListCommands.Direction to, Duration timeout) Atomically returns and removes the first/last element (head/tail depending on thefromargument) of the list stored atsourceKey, and pushes the element at the first/last element (head/tail depending on thetoargument) of the list stored atdestinationKey.