All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.lettuce.core.output.ValueStreamingChannel Maven / Gradle / Ivy

Go to download

Advanced and thread-safe Java Redis client for synchronous, asynchronous, and reactive usage. Supports Cluster, Sentinel, Pipelining, Auto-Reconnect, Codecs and much more.

The newest version!
package io.lettuce.core.output;

/**
 * Streaming API for multiple Keys. You can implement this interface in order to receive a call to {@code onValue} on every
 * value.
 *
 * @param  Value type.
 * @author Mark Paluch
 * @since 3.0
 */
@FunctionalInterface
public interface ValueStreamingChannel {

    /**
     * Called on every incoming value.
     *
     * @param value the value
     */
    void onValue(V value);

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy