Class ReactiveHashCommands.HDelCommand
java.lang.Object
org.springframework.data.redis.connection.ReactiveRedisConnection.KeyCommand
org.springframework.data.redis.connection.ReactiveHashCommands.HashFieldsCommand
org.springframework.data.redis.connection.ReactiveHashCommands.HDelCommand
- All Implemented Interfaces:
ReactiveRedisConnection.Command
- Enclosing interface:
ReactiveHashCommands
- Since:
- 2.0
- Author:
- Christoph Strobl
- See Also:
-
Method Summary
Modifier and TypeMethodDescriptionfield
(ByteBuffer field) Creates a newReactiveHashCommands.HDelCommand
given afield name
.fields
(Collection<ByteBuffer> fields) Creates a newReactiveHashCommands.HDelCommand
given aCollection
of field names.from
(ByteBuffer key) Applies the hash key.Methods inherited from class ReactiveHashCommands.HashFieldsCommand
getFields
Methods inherited from class ReactiveRedisConnection.KeyCommand
getKey
Methods inherited from class Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface ReactiveRedisConnection.Command
getName
-
Method Details
-
field
Creates a newReactiveHashCommands.HDelCommand
given afield name
.- Parameters:
field
- must not be null.- Returns:
- a new
ReactiveHashCommands.HDelCommand
for afield name
.
-
fields
Creates a newReactiveHashCommands.HDelCommand
given aCollection
of field names.- Parameters:
fields
- must not be null.- Returns:
- a new
ReactiveHashCommands.HDelCommand
for aCollection
of field names.
-
from
Applies the hash key. Constructs a new command instance with all previously configured properties.- Parameters:
key
- must not be null.- Returns:
- a new
ReactiveHashCommands.HDelCommand
with key applied.
-