Module lettuce.core

Class DoubleOutput<K,​V>

java.lang.Object
io.lettuce.core.output.CommandOutput<K,​V,​Double>
io.lettuce.core.output.DoubleOutput<K,​V>
Type Parameters:
K - Key type.
V - Value type.

public class DoubleOutput<K,​V>
extends CommandOutput<K,​V,​Double>
Double output, may be null.
Author:
Will Glozer
  • Constructor Details

    • DoubleOutput

      public DoubleOutput​(RedisCodec<K,​V> codec)
  • Method Details

    • set

      public void set​(ByteBuffer bytes)
      Description copied from class: CommandOutput
      Update the command output with a sequence of bytes, or null. Concrete CommandOutput implementations must override this method to decode bulk/bytes response values.
      Overrides:
      set in class CommandOutput<K,​V,​Double>
      Parameters:
      bytes - The command output, or null.
    • set

      public void set​(double number)
      Description copied from class: CommandOutput
      Update the command output with a floating-point number. Concrete CommandOutput implementations must override this method to decode double response values.
      Overrides:
      set in class CommandOutput<K,​V,​Double>
      Parameters:
      number - The command output.