Class ReactiveStringCommands.AppendCommand
java.lang.Object
org.springframework.data.redis.connection.ReactiveRedisConnection.KeyCommand
org.springframework.data.redis.connection.ReactiveStringCommands.AppendCommand
- All Implemented Interfaces:
ReactiveRedisConnection.Command
- Enclosing interface:
- ReactiveStringCommands
APPEND
command parameters.- Author:
- Christoph Strobl
- See Also:
-
Method Summary
Modifier and TypeMethodDescriptionappend
(ByteBuffer value) Applies the value to append.getValue()
key
(ByteBuffer key) Creates a newReactiveStringCommands.AppendCommand
given a key.Methods inherited from class org.springframework.data.redis.connection.ReactiveRedisConnection.KeyCommand
getKey
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface org.springframework.data.redis.connection.ReactiveRedisConnection.Command
getName
-
Method Details
-
key
Creates a newReactiveStringCommands.AppendCommand
given a key.- Parameters:
key
- must not be null.- Returns:
- a new
ReactiveStringCommands.AppendCommand
for a key.
-
append
Applies the value to append. Constructs a new command instance with all previously configured properties.- Parameters:
value
- must not be null.- Returns:
- a new
ReactiveStringCommands.AppendCommand
with value applied.
-
getValue
- Returns:
- can be null.
-