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

io.lettuce.core.codec.ComposedRedisCodec 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.codec;

import java.nio.ByteBuffer;

import io.lettuce.core.internal.LettuceAssert;

/**
 * A {@link ComposedRedisCodec} combines two {@link RedisCodec cdecs} to encode/decode key and value to the command output.
 *
 * @author Dimitris Mandalidis
 * @since 5.2
 */
class ComposedRedisCodec implements RedisCodec {

    private final RedisCodec keyCodec;

    private final RedisCodec valueCodec;

    ComposedRedisCodec(RedisCodec keyCodec, RedisCodec valueCodec) {
        LettuceAssert.notNull(keyCodec, "Key codec must not be null");
        LettuceAssert.notNull(valueCodec, "Value codec must not be null");
        this.keyCodec = keyCodec;
        this.valueCodec = valueCodec;
    }

    @Override
    public K decodeKey(ByteBuffer bytes) {
        return keyCodec.decodeKey(bytes);
    }

    @Override
    public V decodeValue(ByteBuffer bytes) {
        return valueCodec.decodeValue(bytes);
    }

    @Override
    public ByteBuffer encodeKey(K key) {
        return keyCodec.encodeKey(key);
    }

    @Override
    public ByteBuffer encodeValue(V value) {
        return valueCodec.encodeValue(value);
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy