K - Key type.V - Value type.public class BooleanOutput<K,V> extends CommandOutput<K,V,Boolean>
codec, error, output| Constructor and Description |
|---|
BooleanOutput(RedisCodec<K,V> codec) |
| Modifier and Type | Method and Description |
|---|---|
void |
set(boolean value)
Update the command output with a boolean.
|
void |
set(ByteBuffer bytes)
Update the command output with a sequence of bytes, or
null. |
void |
set(long integer)
Update the command output with a 64-bit signed integer.
|
complete, decodeAscii, get, getError, hasError, multi, multiArray, multiMap, multiPush, multiSet, set, setBigNumber, setError, setError, setSingle, toStringpublic BooleanOutput(RedisCodec<K,V> codec)
public void set(long integer)
CommandOutputCommandOutput implementations must override this
method to decode number (integer) response values.set in class CommandOutput<K,V,Boolean>integer - The command output.public void set(ByteBuffer bytes)
CommandOutputnull. Concrete CommandOutput implementations must
override this method to decode bulk/bytes response values.set in class CommandOutput<K,V,Boolean>bytes - The command output, or null.public void set(boolean value)
CommandOutputCommandOutput implementations must override this method to
decode boolean response values.set in class CommandOutput<K,V,Boolean>value - The command output.Copyright © 2022 lettuce.io. All rights reserved.