
io.lettuce.core.masterreplica.StatefulRedisMasterReplicaConnectionImpl Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of lettuce-core Show documentation
Show all versions of lettuce-core Show documentation
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.masterreplica;
import java.time.Duration;
import io.lettuce.core.ReadFrom;
import io.lettuce.core.StatefulRedisConnectionImpl;
import io.lettuce.core.codec.RedisCodec;
import io.lettuce.core.json.JsonParser;
import reactor.core.publisher.Mono;
import static io.lettuce.core.ClientOptions.DEFAULT_JSON_PARSER;
/**
* @author Mark Paluch
*/
class StatefulRedisMasterReplicaConnectionImpl extends StatefulRedisConnectionImpl
implements StatefulRedisMasterReplicaConnection {
/**
* Initialize a new connection.
*
* @param writer the channel writer
* @param codec Codec used to encode/decode keys and values.
* @param timeout Maximum time to wait for a response.
*/
StatefulRedisMasterReplicaConnectionImpl(MasterReplicaChannelWriter writer, RedisCodec codec, Duration timeout) {
super(writer, NoOpPushHandler.INSTANCE, codec, timeout, DEFAULT_JSON_PARSER);
}
/**
* Initialize a new connection.
*
* @param writer the channel writer
* @param codec Codec used to encode/decode keys and values.
* @param timeout Maximum time to wait for a response.
* @param parser the JSON parser to use
*/
StatefulRedisMasterReplicaConnectionImpl(MasterReplicaChannelWriter writer, RedisCodec codec, Duration timeout,
Mono parser) {
super(writer, NoOpPushHandler.INSTANCE, codec, timeout, parser);
}
@Override
public void setReadFrom(ReadFrom readFrom) {
getChannelWriter().setReadFrom(readFrom);
}
@Override
public ReadFrom getReadFrom() {
return getChannelWriter().getReadFrom();
}
@Override
public MasterReplicaChannelWriter getChannelWriter() {
return (MasterReplicaChannelWriter) super.getChannelWriter();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy