Archive for March, 2011
Series: Multi-threading in Java – Part 1: ExecutorService
Posted by Lieven Doclo in Java SE on 2011/03/23
Starting with Java 5, many multithreading and more specifically concurrency features have been added. We’ll go over a couple of them in the next couple of articles.
ExecutorService
Before Java 5, you either used a 3rd party thread pool or implemented your own pooling in order to handle multiple threads. With the introduction of the ExecutorService implementations, this is a thing of the past. Read the rest of this entry »