java.lang.Object
io.lettuce.core.output.CommandOutput<K,V,T>
io.lettuce.core.output.ScanOutput<K,V,ScoredValueScanCursor<V>>
io.lettuce.core.output.ScoredValueScanOutput<K,V>
- Type Parameters:
K- Key type.V- Value type.
public class ScoredValueScanOutput<K,V> extends ScanOutput<K,V,ScoredValueScanCursor<V>>
ScoredValueScanCursor for scan cursor output.- Author:
- Mark Paluch
-
Field Summary
Fields inherited from class io.lettuce.core.output.CommandOutput
codec, error, output -
Constructor Summary
Constructors Constructor Description ScoredValueScanOutput(RedisCodec<K,V> codec) -
Method Summary
Modifier and Type Method Description voidset(double number)Update the command output with a floating-point number.protected voidsetOutput(ByteBuffer bytes)Methods inherited from class io.lettuce.core.output.ScanOutput
setMethods inherited from class io.lettuce.core.output.CommandOutput
complete, decodeAscii, get, getError, hasError, multi, multiArray, multiMap, multiPush, multiSet, set, set, setBigNumber, setError, setError, setSingle, toString
-
Constructor Details
-
ScoredValueScanOutput
-
-
Method Details
-
setOutput
- Specified by:
setOutputin classScanOutput<K,V,ScoredValueScanCursor<V>>
-
set
public void set(double number)Description copied from class:CommandOutputUpdate the command output with a floating-point number. ConcreteCommandOutputimplementations must override this method to decodedoubleresponse values.- Overrides:
setin classCommandOutput<K,V,ScoredValueScanCursor<V>>- Parameters:
number- The command output.
-