Is ExecutorService (specifically ThreadPoolExecutor) thread safe?

Viewed 28389

Does the ExecutorService guarantee thread safety ?

I'll be submitting jobs from different threads to the same ThreadPoolExecutor, do I have to synchronize access to the executor before interacting/submitting tasks?

6 Answers
Related