Skip to content

Instantly share code, notes, and snippets.

@anhldbk
Last active January 7, 2016 15:53
Show Gist options
  • Save anhldbk/de2ed5aaa9d1b75bb9ad to your computer and use it in GitHub Desktop.
Save anhldbk/de2ed5aaa9d1b75bb9ad to your computer and use it in GitHub Desktop.
Using executor services
public class LimitedQueue<E> extends LinkedBlockingQueue<E>
{
public LimitedQueue(int maxSize)
{
super(maxSize);
}
@Override
public boolean offer(E e)
{
// turn offer() and add() into a blocking calls (unless interrupted)
try {
put(e);
return true;
} catch(InterruptedException ie) {
Thread.currentThread().interrupt();
}
return false;
}
}
ThreadPoolExecutor executor = new ThreadPoolExecutor(numWorkerThreads, numWorkerThreads,
0L, TimeUnit.MILLISECONDS,
new LimitedQueue<Runnable>(maxQueue));
executor.submit(new Runnable() {....});
executor.shutdown();
try {
executor.awaitTermination(50, TimeUnit.MINUTES);
} catch (InterruptedException e) {
e.printStackTrace();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment