|
|
|
@ -1,6 +1,5 @@
|
|
|
|
|
package com.fanruan.api.cluster.state; |
|
|
|
|
|
|
|
|
|
import com.fr.collections.api.Codec; |
|
|
|
|
import com.fr.collections.config.redis.RedisCollectionConfig; |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
@ -11,23 +10,9 @@ import com.fr.collections.config.redis.RedisCollectionConfig;
|
|
|
|
|
*/ |
|
|
|
|
public class BaseRedisCollectionConfig extends RedisCollectionConfig { |
|
|
|
|
|
|
|
|
|
public BaseRedisCollectionConfig(Codec codec, String host, int port) { |
|
|
|
|
|
|
|
|
|
super(codec, host, port); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public BaseRedisCollectionConfig(String host, int port, String password) { |
|
|
|
|
|
|
|
|
|
super(host, port, password); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public BaseRedisCollectionConfig() { |
|
|
|
|
|
|
|
|
|
super(); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public BaseRedisCollectionConfig(String host, int port) { |
|
|
|
|
|
|
|
|
|
super(host, port); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|