Last active
January 7, 2016 15:53
-
-
Save anhldbk/de2ed5aaa9d1b75bb9ad to your computer and use it in GitHub Desktop.
Using executor services
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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