I got a pool of threads using ExecutorService, this executorService will execute the runnable class I implemented, and now I'd like to get the currently running thread in this pool, how? Please help, thanks.
Thread currThread = Thread.currentThread();
Will this get the current running thread in the pool?