Module lettuce.core

Class KeyValueListOutput<K,​V>

java.lang.Object
io.lettuce.core.output.CommandOutput<K,​V,​List<KeyValue<K,​V>>>
io.lettuce.core.output.KeyValueListOutput<K,​V>
Type Parameters:
K - Key type.
V - Value type.
All Implemented Interfaces:
StreamingOutput<KeyValue<K,​V>>

public class KeyValueListOutput<K,​V>
extends CommandOutput<K,​V,​List<KeyValue<K,​V>>>
implements StreamingOutput<KeyValue<K,​V>>
List of KeyValue output. Can be either used to decode key-value tuples (e.g. HGETALL) of for a pure value response where keys are supplied as input (for e.g. HMGET).
Author:
Mark Paluch