@@ -108,80 +108,80 @@ public JedisCluster(Set<HostAndPort> nodes, int timeout,
108108 this (nodes , timeout , DEFAULT_MAX_ATTEMPTS , poolConfig );
109109 }
110110
111- public JedisCluster (Set <HostAndPort > jedisClusterNode , int timeout , int maxAttempts ,
111+ public JedisCluster (Set <HostAndPort > clusterNodes , int timeout , int maxAttempts ,
112112 final GenericObjectPoolConfig <Connection > poolConfig ) {
113- this (jedisClusterNode , timeout , timeout , maxAttempts , poolConfig );
113+ this (clusterNodes , timeout , timeout , maxAttempts , poolConfig );
114114 }
115115
116- public JedisCluster (Set <HostAndPort > jedisClusterNode , int connectionTimeout ,
117- int soTimeout , int maxAttempts , final GenericObjectPoolConfig <Connection > poolConfig ) {
118- this (jedisClusterNode , connectionTimeout , soTimeout , maxAttempts , null , poolConfig );
116+ public JedisCluster (Set <HostAndPort > clusterNodes , int connectionTimeout , int soTimeout ,
117+ int maxAttempts , final GenericObjectPoolConfig <Connection > poolConfig ) {
118+ this (clusterNodes , connectionTimeout , soTimeout , maxAttempts , null , poolConfig );
119119 }
120120
121- public JedisCluster (Set <HostAndPort > jedisClusterNode , int connectionTimeout ,
122- int soTimeout , int maxAttempts , String password , GenericObjectPoolConfig <Connection > poolConfig ) {
123- this (jedisClusterNode , connectionTimeout , soTimeout , maxAttempts , password , null , poolConfig );
121+ public JedisCluster (Set <HostAndPort > clusterNodes , int connectionTimeout , int soTimeout ,
122+ int maxAttempts , String password , GenericObjectPoolConfig <Connection > poolConfig ) {
123+ this (clusterNodes , connectionTimeout , soTimeout , maxAttempts , password , null , poolConfig );
124124 }
125125
126- public JedisCluster (Set <HostAndPort > jedisClusterNode , int connectionTimeout ,
126+ public JedisCluster (Set <HostAndPort > clusterNodes , int connectionTimeout ,
127127 int soTimeout , int maxAttempts , String password , String clientName ,
128128 GenericObjectPoolConfig <Connection > poolConfig ) {
129- this (jedisClusterNode , connectionTimeout , soTimeout , maxAttempts , null , password , clientName ,
129+ this (clusterNodes , connectionTimeout , soTimeout , maxAttempts , null , password , clientName ,
130130 poolConfig );
131131 }
132132
133- public JedisCluster (Set <HostAndPort > jedisClusterNode , int connectionTimeout ,
134- int soTimeout , int maxAttempts , String user , String password , String clientName ,
133+ public JedisCluster (Set <HostAndPort > clusterNodes , int connectionTimeout , int soTimeout ,
134+ int maxAttempts , String user , String password , String clientName ,
135135 GenericObjectPoolConfig <Connection > poolConfig ) {
136- this (jedisClusterNode , DefaultJedisClientConfig .builder ().connectionTimeoutMillis (connectionTimeout )
136+ this (clusterNodes , DefaultJedisClientConfig .builder ().connectionTimeoutMillis (connectionTimeout )
137137 .socketTimeoutMillis (soTimeout ).user (user ).password (password ).clientName (clientName ).build (),
138138 maxAttempts , poolConfig );
139139 }
140140
141- public JedisCluster (Set <HostAndPort > jedisClusterNode , int connectionTimeout ,
141+ public JedisCluster (Set <HostAndPort > clusterNodes , int connectionTimeout ,
142142 int soTimeout , int infiniteSoTimeout , int maxAttempts , String user , String password ,
143143 String clientName , GenericObjectPoolConfig <Connection > poolConfig ) {
144- this (jedisClusterNode , DefaultJedisClientConfig .builder ().connectionTimeoutMillis (connectionTimeout )
144+ this (clusterNodes , DefaultJedisClientConfig .builder ().connectionTimeoutMillis (connectionTimeout )
145145 .socketTimeoutMillis (soTimeout ).blockingSocketTimeoutMillis (infiniteSoTimeout )
146146 .user (user ).password (password ).clientName (clientName ).build (), maxAttempts , poolConfig );
147147 }
148148
149- public JedisCluster (Set <HostAndPort > jedisClusterNode , int connectionTimeout ,
150- int soTimeout , int maxAttempts , String password , String clientName ,
149+ public JedisCluster (Set <HostAndPort > clusterNodes , int connectionTimeout , int soTimeout ,
150+ int maxAttempts , String password , String clientName ,
151151 GenericObjectPoolConfig <Connection > poolConfig , boolean ssl ) {
152- this (jedisClusterNode , connectionTimeout , soTimeout , maxAttempts , null , password , clientName ,
152+ this (clusterNodes , connectionTimeout , soTimeout , maxAttempts , null , password , clientName ,
153153 poolConfig , ssl );
154154 }
155155
156- public JedisCluster (Set <HostAndPort > jedisClusterNode , int connectionTimeout ,
157- int soTimeout , int maxAttempts , String user , String password , String clientName ,
156+ public JedisCluster (Set <HostAndPort > clusterNodes , int connectionTimeout , int soTimeout ,
157+ int maxAttempts , String user , String password , String clientName ,
158158 GenericObjectPoolConfig <Connection > poolConfig , boolean ssl ) {
159- this (jedisClusterNode , DefaultJedisClientConfig .builder ().connectionTimeoutMillis (connectionTimeout )
159+ this (clusterNodes , DefaultJedisClientConfig .builder ().connectionTimeoutMillis (connectionTimeout )
160160 .socketTimeoutMillis (soTimeout ).user (user ).password (password ).clientName (clientName ).ssl (ssl ).build (),
161161 maxAttempts , poolConfig );
162162 }
163163
164- public JedisCluster (Set <HostAndPort > jedisClusterNode , JedisClientConfig clientConfig ,
164+ public JedisCluster (Set <HostAndPort > clusterNodes , JedisClientConfig clientConfig ,
165165 int maxAttempts , GenericObjectPoolConfig <Connection > poolConfig ) {
166- this (jedisClusterNode , clientConfig , maxAttempts ,
166+ this (clusterNodes , clientConfig , maxAttempts ,
167167 Duration .ofMillis ((long ) clientConfig .getSocketTimeoutMillis () * maxAttempts ), poolConfig );
168168 }
169169
170- public JedisCluster (Set <HostAndPort > jedisClusterNode , JedisClientConfig clientConfig ,
170+ public JedisCluster (Set <HostAndPort > clusterNodes , JedisClientConfig clientConfig ,
171171 int maxAttempts , Duration maxTotalRetriesDuration , GenericObjectPoolConfig <Connection > poolConfig ) {
172- super (jedisClusterNode , clientConfig , poolConfig , maxAttempts , maxTotalRetriesDuration );
172+ super (clusterNodes , clientConfig , poolConfig , maxAttempts , maxTotalRetriesDuration );
173173 }
174174
175- public JedisCluster (Set <HostAndPort > jedisClusterNodes , JedisClientConfig clientConfig ) {
176- this (jedisClusterNodes , clientConfig , DEFAULT_MAX_ATTEMPTS );
175+ public JedisCluster (Set <HostAndPort > clusterNodess , JedisClientConfig clientConfig ) {
176+ this (clusterNodess , clientConfig , DEFAULT_MAX_ATTEMPTS );
177177 }
178178
179- public JedisCluster (Set <HostAndPort > jedisClusterNodes , JedisClientConfig clientConfig , int maxAttempts ) {
180- super (jedisClusterNodes , clientConfig , maxAttempts );
179+ public JedisCluster (Set <HostAndPort > clusterNodess , JedisClientConfig clientConfig , int maxAttempts ) {
180+ super (clusterNodess , clientConfig , maxAttempts );
181181 }
182182
183- public JedisCluster (Set <HostAndPort > jedisClusterNodes , JedisClientConfig clientConfig , int maxAttempts , Duration maxTotalRetriesDuration ) {
184- super (jedisClusterNodes , clientConfig , maxAttempts , maxTotalRetriesDuration );
183+ public JedisCluster (Set <HostAndPort > clusterNodess , JedisClientConfig clientConfig , int maxAttempts , Duration maxTotalRetriesDuration ) {
184+ super (clusterNodess , clientConfig , maxAttempts , maxTotalRetriesDuration );
185185 }
186186
187187 public Map <String , ConnectionPool > getClusterNodes () {
0 commit comments