Merge branch '2.2.x'
# Conflicts: # src/main/java/org/redisson/RedissonPatternTopic.java # src/main/java/org/redisson/RedissonTopic.java # src/main/java/org/redisson/connection/MasterSlaveEntry.java # src/main/java/org/redisson/reactive/RedissonPatternTopicReactive.java # src/main/java/org/redisson/reactive/RedissonTopicReactive.javapull/574/merge
commit
7651ceedb1
@ -0,0 +1,90 @@
|
|||||||
|
/**
|
||||||
|
* Copyright 2016 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.pubsub;
|
||||||
|
|
||||||
|
import java.util.LinkedList;
|
||||||
|
import java.util.Queue;
|
||||||
|
import java.util.concurrent.CountDownLatch;
|
||||||
|
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
* @author Nikita Koksharov
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public class AsyncSemaphore {
|
||||||
|
|
||||||
|
private int counter;
|
||||||
|
private final Queue<Runnable> listeners = new LinkedList<Runnable>();
|
||||||
|
|
||||||
|
public AsyncSemaphore(int permits) {
|
||||||
|
counter = permits;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void acquireUninterruptibly() {
|
||||||
|
final CountDownLatch latch = new CountDownLatch(1);
|
||||||
|
acquire(new Runnable() {
|
||||||
|
@Override
|
||||||
|
public void run() {
|
||||||
|
latch.countDown();
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
try {
|
||||||
|
latch.await();
|
||||||
|
} catch (InterruptedException e) {
|
||||||
|
Thread.currentThread().interrupt();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public void acquire(Runnable listener) {
|
||||||
|
boolean run = false;
|
||||||
|
|
||||||
|
synchronized (this) {
|
||||||
|
if (counter == 0) {
|
||||||
|
listeners.add(listener);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
if (counter > 0) {
|
||||||
|
counter--;
|
||||||
|
run = true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (run) {
|
||||||
|
listener.run();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public boolean remove(Runnable listener) {
|
||||||
|
synchronized (this) {
|
||||||
|
return listeners.remove(listener);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public void release() {
|
||||||
|
Runnable runnable = null;
|
||||||
|
|
||||||
|
synchronized (this) {
|
||||||
|
counter++;
|
||||||
|
runnable = listeners.poll();
|
||||||
|
}
|
||||||
|
|
||||||
|
if (runnable != null) {
|
||||||
|
acquire(runnable);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
@ -0,0 +1,47 @@
|
|||||||
|
/**
|
||||||
|
* Copyright 2016 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.pubsub;
|
||||||
|
|
||||||
|
import io.netty.util.concurrent.Future;
|
||||||
|
import io.netty.util.concurrent.FutureListener;
|
||||||
|
import io.netty.util.concurrent.Promise;
|
||||||
|
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
* @author Nikita Koksharov
|
||||||
|
*
|
||||||
|
* @param <T>
|
||||||
|
*/
|
||||||
|
public class TransferListener<T> implements FutureListener<T> {
|
||||||
|
|
||||||
|
private Promise<T> promise;
|
||||||
|
|
||||||
|
public TransferListener(Promise<T> promise) {
|
||||||
|
super();
|
||||||
|
this.promise = promise;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void operationComplete(Future<T> future) throws Exception {
|
||||||
|
if (!future.isSuccess()) {
|
||||||
|
promise.tryFailure(future.cause());
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
promise.trySuccess(future.getNow());
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
Loading…
Reference in New Issue