com.github.lontime.shaded.org.redisson.config.ReplicatedServersConfig Maven / Gradle / Ivy
The newest version!
/**
* Copyright (c) 2013-2021 Nikita Koksharov
*
* 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.github.lontime.shaded.org.redisson.config;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;
/**
* Configuration for an Azure Redis Cache or AWS ElastiCache servers.
* A replication group is composed of a single master endpoint and multiple read slaves.
*
* @author Steve Ungerer
* @author Nikita Koksharov
*/
public class ReplicatedServersConfig extends BaseMasterSlaveServersConfig {
/**
* Replication group node urls list
*/
private List nodeAddresses = new ArrayList<>();
/**
* Replication group scan interval in milliseconds
*/
private int scanInterval = 1000;
/**
* Database index used for Redis connection
*/
private int database = 0;
public ReplicatedServersConfig() {
}
ReplicatedServersConfig(ReplicatedServersConfig config) {
super(config);
setNodeAddresses(config.getNodeAddresses());
setScanInterval(config.getScanInterval());
setDatabase(config.getDatabase());
}
/**
* Add Redis cluster node address. Use follow format -- host:port
*
* @param addresses in host:port
format
* @return config
*/
public ReplicatedServersConfig addNodeAddress(String... addresses) {
nodeAddresses.addAll(Arrays.asList(addresses));
return this;
}
public List getNodeAddresses() {
return nodeAddresses;
}
public void setNodeAddresses(List nodeAddresses) {
this.nodeAddresses = nodeAddresses;
}
public int getScanInterval() {
return scanInterval;
}
/**
* Replication group scan interval in milliseconds
*
* Default is 1000
*
* @param scanInterval in milliseconds
* @return config
*/
public ReplicatedServersConfig setScanInterval(int scanInterval) {
this.scanInterval = scanInterval;
return this;
}
/**
* Database index used for Redis connection.
*
* Default is 0
*
* @param database number
* @return config
*/
public ReplicatedServersConfig setDatabase(int database) {
this.database = database;
return this;
}
public int getDatabase() {
return database;
}
}