Module lettuce.core

Class KeyScanStreamingOutput<K,​V>

java.lang.Object
io.lettuce.core.output.CommandOutput<K,​V,​T>
io.lettuce.core.output.ScanOutput<K,​V,​StreamScanCursor>
io.lettuce.core.output.KeyScanStreamingOutput<K,​V>
Type Parameters:
K - Key type.
V - Value type.

public class KeyScanStreamingOutput<K,​V>
extends ScanOutput<K,​V,​StreamScanCursor>
Streaming API for multiple Keys. You can implement this interface in order to receive a call to onKey on every key. Key uniqueness is not guaranteed.
Author:
Mark Paluch