Send channelFuture support improvement. Reconnection detection speedup
parent
bf64e3a95d
commit
2019283a2e
@ -0,0 +1,30 @@
|
||||
/**
|
||||
* Copyright 2014 Nikita Koksharov, Nickolay Borbit
|
||||
*
|
||||
* 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 org.redisson.client;
|
||||
|
||||
public class RedisConnectionClosedException extends RedisException {
|
||||
|
||||
private static final long serialVersionUID = -4756928186967834601L;
|
||||
|
||||
public RedisConnectionClosedException(String msg) {
|
||||
super(msg);
|
||||
}
|
||||
|
||||
public RedisConnectionClosedException(String msg, Throwable e) {
|
||||
super(msg, e);
|
||||
}
|
||||
|
||||
}
|
@ -0,0 +1,46 @@
|
||||
/**
|
||||
* Copyright 2014 Nikita Koksharov, Nickolay Borbit
|
||||
*
|
||||
* 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 org.redisson.client.protocol;
|
||||
|
||||
import java.util.concurrent.atomic.AtomicBoolean;
|
||||
|
||||
import io.netty.channel.ChannelPromise;
|
||||
|
||||
public class QueueCommandHolder {
|
||||
|
||||
final AtomicBoolean sended = new AtomicBoolean();
|
||||
final ChannelPromise channelPromise;
|
||||
final QueueCommand command;
|
||||
|
||||
public QueueCommandHolder(QueueCommand command, ChannelPromise channelPromise) {
|
||||
super();
|
||||
this.command = command;
|
||||
this.channelPromise = channelPromise;
|
||||
}
|
||||
|
||||
public QueueCommand getCommand() {
|
||||
return command;
|
||||
}
|
||||
|
||||
public ChannelPromise getChannelPromise() {
|
||||
return channelPromise;
|
||||
}
|
||||
|
||||
public AtomicBoolean getSended() {
|
||||
return sended;
|
||||
}
|
||||
|
||||
}
|
Loading…
Reference in New Issue