Module lettuce.core

Class GenericMapOutput<K,​V>

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

public class GenericMapOutput<K,​V>
extends CommandOutput<K,​V,​Map<K,​Object>>
Map of keys and objects output.
Since:
6.0/RESP3
Author:
Mark Paluch
  • Constructor Details

    • GenericMapOutput

      public GenericMapOutput​(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,​Map<K,​Object>>
      Parameters:
      bytes - The command output, or null.
    • setBigNumber

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

      public void set​(long integer)
      Description copied from class: CommandOutput
      Update the command output with a 64-bit signed integer. Concrete CommandOutput implementations must override this method to decode number (integer) response values.
      Overrides:
      set in class CommandOutput<K,​V,​Map<K,​Object>>
      Parameters:
      integer - The command output.
    • 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,​Map<K,​Object>>
      Parameters:
      number - The command output.
    • multi

      public void multi​(int count)
      Description copied from class: CommandOutput
      Mark the beginning of a multi sequence (array).
      Overrides:
      multi in class CommandOutput<K,​V,​Map<K,​Object>>
      Parameters:
      count - expected number of elements in this multi sequence.