Module lettuce.core

Class ValueSetOutput<K,​V>

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

public class ValueSetOutput<K,​V>
extends CommandOutput<K,​V,​Set<V>>
Set of value output.
Author:
Will Glozer
  • Constructor Details

    • ValueSetOutput

      public ValueSetOutput​(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,​Set<V>>
      Parameters:
      bytes - The command output, or null.
    • 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,​Set<V>>
      Parameters:
      count - expected number of elements in this multi sequence.