Thread Pool Callback Mechanism

I am using java.util.concurrent.ExecutorService to create a thread pool. I need a way to inform the user of the progress of the threads in the pool. Does anyone have any ideas of how to do this?
[208 byte] By [bmoellera] at [2007-11-27 0:34:46]
# 1

> I am using java.util.concurrent.ExecutorService to

> create a thread pool. I need a way to inform the user

> of the progress of the threads in the pool.

>

> Does anyone have any ideas of how to do this?

Hand the Executor instances of SwingWorker, which implements RunnableFuture. SwingWorker also has a progress() method which can provide progress information.

Niceguy1a at 2007-7-11 22:42:44 > top of Java-index,Core,Core APIs...