Class ReactiveHyperLogLogCommands.PfCountCommand
java.lang.Object
org.springframework.data.redis.connection.ReactiveHyperLogLogCommands.PfCountCommand
- All Implemented Interfaces:
ReactiveRedisConnection.Command
- Enclosing interface:
- ReactiveHyperLogLogCommands
public static class ReactiveHyperLogLogCommands.PfCountCommand
extends Object
implements ReactiveRedisConnection.Command
PFCOUNT
command parameters.- Author:
- Christoph Strobl
- See Also:
-
Method Summary
Modifier and TypeMethodDescriptiongetKey()
getKeys()
valueIn
(ByteBuffer key) Creates a newReactiveHyperLogLogCommands.PfCountCommand
given akey
.valuesIn
(Collection<ByteBuffer> keys) Creates a newReactiveHyperLogLogCommands.PfCountCommand
given aCollection
of keys.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
-
valueIn
Creates a newReactiveHyperLogLogCommands.PfCountCommand
given akey
.- Parameters:
key
- must not be null.- Returns:
- a new
ReactiveHyperLogLogCommands.PfCountCommand
forkey
.
-
valuesIn
Creates a newReactiveHyperLogLogCommands.PfCountCommand
given aCollection
of keys.- Parameters:
keys
- must not be null.- Returns:
- a new
ReactiveHyperLogLogCommands.PfCountCommand
for keys.
-
getKeys
- Returns:
-
getKey
- Specified by:
getKey
in interfaceReactiveRedisConnection.Command
- Returns:
- the key related to this command.
-