com.github.rholder.moar.concurrent.StrategicBlockingQueue Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of moar-concurrent Show documentation
Show all versions of moar-concurrent Show documentation
This module contains a collection of useful builders and concurrency classes to assist in modeling complex or overly tweakable concurrent processing pipelines.
package com.github.rholder.moar.concurrent;
import java.util.concurrent.BlockingQueue;
import java.util.concurrent.TimeUnit;
/**
* A StrategicBlockingQueue wraps a standard BlockingQueue, providing a
* QueueingStrategy for performing actions before and after adding and removing
* items from the wrapped queue.
*
* @author rholder
* @param the type of elements held in this collection
*/
public class StrategicBlockingQueue extends WrappedBlockingQueue {
private QueueingStrategy queueingStrategy;
public StrategicBlockingQueue(BlockingQueue blockingQueue, QueueingStrategy queueingStrategy) {
super(blockingQueue);
this.queueingStrategy = queueingStrategy;
}
@Override
public void put(E e) throws InterruptedException {
queueingStrategy.onBeforeAdd(e);
try {
super.put(e);
} finally {
queueingStrategy.onAfterAdd();
}
}
@Override
public boolean add(E e) {
queueingStrategy.onBeforeAdd(e);
try {
return super.add(e);
} finally {
queueingStrategy.onAfterAdd();
}
}
@Override
public E take() throws InterruptedException {
queueingStrategy.onBeforeRemove();
E value = null;
try {
return value = super.take();
} finally {
queueingStrategy.onAfterRemove(value);
}
}
@Override
public E poll(long timeout, TimeUnit unit) throws InterruptedException {
queueingStrategy.onBeforeRemove();
E value = null;
try {
return value = super.poll(timeout, unit);
} finally {
queueingStrategy.onAfterRemove(value);
}
}
@Override
public E poll() {
queueingStrategy.onBeforeRemove();
E value = null;
try {
return value = super.poll();
} finally {
queueingStrategy.onAfterRemove(value);
}
}
// TODO implement drainTo() such that add/remove's use QueueingStrategy
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy