You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
82 lines
2.2 KiB
82 lines
2.2 KiB
7 years ago
|
/**
|
||
|
* Copyright 2018 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.fr.third.org.redisson;
|
||
|
|
||
|
import com.fr.third.org.redisson.api.RAtomicLong;
|
||
|
import com.fr.third.org.redisson.api.RFuture;
|
||
|
import com.fr.third.org.redisson.api.RLongAdder;
|
||
|
import com.fr.third.org.redisson.api.RedissonClient;
|
||
|
import com.fr.third.org.redisson.misc.LongAdder;
|
||
|
import com.fr.third.org.redisson.api.RAtomicLong;
|
||
|
import com.fr.third.org.redisson.api.RFuture;
|
||
|
import com.fr.third.org.redisson.api.RLongAdder;
|
||
|
import com.fr.third.org.redisson.api.RedissonClient;
|
||
|
import com.fr.third.org.redisson.command.CommandAsyncExecutor;
|
||
|
import com.fr.third.org.redisson.misc.LongAdder;
|
||
|
|
||
|
/**
|
||
|
*
|
||
|
* @author Nikita Koksharov
|
||
|
*
|
||
|
*/
|
||
|
public class RedissonLongAdder extends RedissonBaseAdder<Long> implements RLongAdder {
|
||
|
|
||
|
private final RAtomicLong atomicLong;
|
||
|
private final LongAdder counter = new LongAdder();
|
||
|
|
||
|
public RedissonLongAdder(CommandAsyncExecutor connectionManager, String name, RedissonClient redisson) {
|
||
|
super(connectionManager, name, redisson);
|
||
|
|
||
|
atomicLong = redisson.getAtomicLong(getName());
|
||
|
}
|
||
|
|
||
|
@Override
|
||
|
protected void doReset() {
|
||
|
counter.reset();
|
||
|
}
|
||
|
|
||
|
@Override
|
||
|
protected RFuture<Long> addAndGetAsync() {
|
||
|
return atomicLong.getAndAddAsync(counter.sum());
|
||
|
}
|
||
|
|
||
|
@Override
|
||
|
protected RFuture<Long> getAndDeleteAsync() {
|
||
|
return atomicLong.getAndDeleteAsync();
|
||
|
}
|
||
|
|
||
|
@Override
|
||
|
public void add(long x) {
|
||
|
counter.add(x);
|
||
|
}
|
||
|
|
||
|
@Override
|
||
|
public void increment() {
|
||
|
add(1L);
|
||
|
}
|
||
|
|
||
|
@Override
|
||
|
public void decrement() {
|
||
|
add(-1L);
|
||
|
}
|
||
|
|
||
|
@Override
|
||
|
public long sum() {
|
||
|
return get(sumAsync());
|
||
|
}
|
||
|
|
||
|
}
|