refactoring
parent
5d6748a321
commit
10cf69fd98
@ -0,0 +1,44 @@
|
||||
package org.redisson;
|
||||
|
||||
import java.util.List;
|
||||
import java.util.concurrent.atomic.AtomicBoolean;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author Nikita Koksharov
|
||||
*
|
||||
*/
|
||||
public class BooleanSlotCallback implements SlotCallback<Boolean, Boolean> {
|
||||
|
||||
private final AtomicBoolean r = new AtomicBoolean();
|
||||
|
||||
private final Object[] params;
|
||||
|
||||
public BooleanSlotCallback() {
|
||||
this(null);
|
||||
}
|
||||
|
||||
public BooleanSlotCallback(Object[] params) {
|
||||
this.params = params;
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onSlotResult(Boolean res) {
|
||||
if (res) {
|
||||
r.set(true);
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
public Boolean onFinish() {
|
||||
return r.get();
|
||||
}
|
||||
|
||||
@Override
|
||||
public Object[] createParams(List<Object> params) {
|
||||
if (params == null && this.params != null) {
|
||||
return this.params;
|
||||
}
|
||||
return SlotCallback.super.createParams(params);
|
||||
}
|
||||
}
|
@ -0,0 +1,58 @@
|
||||
/**
|
||||
* Copyright (c) 2013-2022 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 org.redisson;
|
||||
|
||||
import java.util.List;
|
||||
import java.util.concurrent.atomic.AtomicInteger;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author Nikita Koksharov
|
||||
*
|
||||
*/
|
||||
public class IntegerSlotCallback implements SlotCallback<Integer, Integer> {
|
||||
|
||||
private final AtomicInteger results = new AtomicInteger();
|
||||
|
||||
private final Object[] params;
|
||||
|
||||
public IntegerSlotCallback() {
|
||||
this(null);
|
||||
}
|
||||
|
||||
public IntegerSlotCallback(Object[] params) {
|
||||
this.params = params;
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onSlotResult(Integer result) {
|
||||
results.addAndGet(result);
|
||||
}
|
||||
|
||||
@Override
|
||||
public Integer onFinish() {
|
||||
return results.get();
|
||||
}
|
||||
|
||||
@Override
|
||||
public Object[] createParams(List<Object> params) {
|
||||
if (params == null && this.params != null) {
|
||||
return this.params;
|
||||
}
|
||||
return SlotCallback.super.createParams(params);
|
||||
}
|
||||
|
||||
}
|
@ -0,0 +1,41 @@
|
||||
package org.redisson;
|
||||
|
||||
import java.util.List;
|
||||
import java.util.concurrent.atomic.AtomicBoolean;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author Nikita Koksharov
|
||||
*
|
||||
*/
|
||||
public class VoidSlotCallback implements SlotCallback<Void, Void> {
|
||||
|
||||
private final AtomicBoolean r = new AtomicBoolean();
|
||||
|
||||
private final Object[] params;
|
||||
|
||||
public VoidSlotCallback() {
|
||||
this(null);
|
||||
}
|
||||
|
||||
public VoidSlotCallback(Object[] params) {
|
||||
this.params = params;
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onSlotResult(Void res) {
|
||||
}
|
||||
|
||||
@Override
|
||||
public Void onFinish() {
|
||||
return null;
|
||||
}
|
||||
|
||||
@Override
|
||||
public Object[] createParams(List<Object> params) {
|
||||
if (this.params != null) {
|
||||
return this.params;
|
||||
}
|
||||
return SlotCallback.super.createParams(params);
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue