Executors & Concurrency

grim-reaper.jpg Today at work I learnt about the Executor designed to replace calls like

new Thread (new Runnable( public void run() { //stuff } )).start();

with strategies to manage those threads with pools.
Executor e = Executors.newXXXXXExecutorPool()

e.execute(new Runnable(….));

Here are some more links:

Java theory and practice: Concurrency made simple sort of

Learning Java – Chapter 10 : Java

Executors (Java 2 Platform SE 5.0)

Bookmark and Share

No related posts.

This entry was posted in Java. Bookmark the permalink.

Leave a Reply