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

io.lettuce.core.protocol.DecodeBufferPolicy 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.protocol;

import io.netty.buffer.ByteBuf;
import io.netty.channel.ChannelHandlerContext;

/**
 * Strategy defining the approach to discard bytes from the response aggregation {@link ByteBuf buffer} in
 * {@link CommandHandler#decode(ChannelHandlerContext ctx, ByteBuf buffer)} to reclaim memory after various response decoding
 * phases.
 *
 * @since 6.0
 * @author Shaphan
 * @author Mark Paluch
 */
public interface DecodeBufferPolicy {

    /**
     * Callback that is invoked after partially decoding a command.
     *
     * @param buffer aggregation buffer
     */
    default void afterPartialDecode(ByteBuf buffer) {

    }

    /**
     * Callback that is invoked after a command has been fully decoded.
     *
     * @param buffer aggregation buffer
     */
    default void afterCommandDecoded(ByteBuf buffer) {

    }

    /**
     * Callback that is invoked after leaving the decode loop.
     *
     * @param buffer aggregation buffer
     */
    default void afterDecoding(ByteBuf buffer) {
        buffer.discardSomeReadBytes();
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy