
com.lambdaworks.redis.cluster.models.slots.ClusterSlotRange Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of lettuce Show documentation
Show all versions of lettuce 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!
/*
* Copyright 2011-2016 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.lambdaworks.redis.cluster.models.slots;
import java.io.Serializable;
import java.util.ArrayList;
import java.util.Collections;
import java.util.List;
import java.util.Set;
import com.lambdaworks.redis.RedisURI;
import com.lambdaworks.redis.cluster.models.partitions.RedisClusterNode;
import com.lambdaworks.redis.internal.HostAndPort;
import com.lambdaworks.redis.internal.LettuceAssert;
/**
* Represents a range of slots together with its master and slaves.
*
* @author Mark Paluch
* @since 3.0
*/
@SuppressWarnings("serial")
public class ClusterSlotRange implements Serializable {
private int from;
private int to;
private RedisClusterNode masterNode;
private List slaveNodes = Collections.emptyList();
public ClusterSlotRange() {
}
/**
* Constructs a {@link ClusterSlotRange}
*
* @param from from slot
* @param to to slot
* @param masterNode master for the slots, may be {@literal null}
* @param slaveNodes list of slaves must not be {@literal null} but may be empty
*/
public ClusterSlotRange(int from, int to, RedisClusterNode masterNode, List slaveNodes) {
LettuceAssert.notNull(masterNode, "MasterNode must not be null");
LettuceAssert.notNull(slaveNodes, "SlaveNodes must not be null");
this.from = from;
this.to = to;
this.masterNode = masterNode;
this.slaveNodes = slaveNodes;
}
private RedisClusterNode toRedisClusterNode(HostAndPort hostAndPort, String slaveOf, Set flags) {
int port = hostAndPort.hasPort() ? hostAndPort.getPort() : RedisURI.DEFAULT_REDIS_PORT;
RedisClusterNode redisClusterNode = new RedisClusterNode();
redisClusterNode.setUri(RedisURI.create(hostAndPort.getHostText(), port));
redisClusterNode.setSlaveOf(slaveOf);
redisClusterNode.setFlags(flags);
return redisClusterNode;
}
private List toRedisClusterNodes(List hostAndPorts, String slaveOf,
Set flags) {
List result = new ArrayList<>();
for (HostAndPort hostAndPort : hostAndPorts) {
result.add(toRedisClusterNode(hostAndPort, slaveOf, flags));
}
return result;
}
public int getFrom() {
return from;
}
public int getTo() {
return to;
}
public RedisClusterNode getMasterNode() {
return masterNode;
}
public void setMasterNode(RedisClusterNode masterNode) {
this.masterNode = masterNode;
}
public List getSlaveNodes() {
return slaveNodes;
}
public void setSlaveNodes(List slaveNodes) {
this.slaveNodes = slaveNodes;
}
public void setFrom(int from) {
this.from = from;
}
public void setTo(int to) {
this.to = to;
}
@Override
public String toString() {
final StringBuilder sb = new StringBuilder();
sb.append(getClass().getSimpleName());
sb.append(" [from=").append(from);
sb.append(", to=").append(to);
sb.append(", masterNode=").append(masterNode);
sb.append(", slaveNodes=").append(slaveNodes);
sb.append(']');
return sb.toString();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy