java.lang.Object
io.lettuce.core.output.CommandOutput<K,V,SocketAddress>
io.lettuce.core.output.SocketAddressOutput<K,V>
public class SocketAddressOutput<K,V> extends CommandOutput<K,V,SocketAddress>
Output capturing a hostname and port (both string elements) into a
SocketAddress.- Since:
- 5.0.1
- Author:
- Mark Paluch
-
Field Summary
Fields inherited from class io.lettuce.core.output.CommandOutput
codec, error, output -
Constructor Summary
Constructors Constructor Description SocketAddressOutput(RedisCodec<K,V> codec) -
Method Summary
Modifier and Type Method Description voidset(ByteBuffer bytes)Update the command output with a sequence of bytes, ornull.Methods inherited from class io.lettuce.core.output.CommandOutput
complete, decodeAscii, get, getError, hasError, multi, multiArray, multiMap, multiPush, multiSet, set, set, set, setBigNumber, setError, setError, setSingle, toString
-
Constructor Details
-
SocketAddressOutput
-
-
Method Details
-
set
Description copied from class:CommandOutputUpdate the command output with a sequence of bytes, ornull. ConcreteCommandOutputimplementations must override this method to decodebulk/bytes response values.- Overrides:
setin classCommandOutput<K,V,SocketAddress>- Parameters:
bytes- The command output, or null.
-