Reputation: 7028
Sorry if question sounds so simple.
But I want to know that a thread pool only uses the finished threads to pick up new tasks or it can use a blocked thread also?
Thanks
Upvotes: 0
Views: 64
Reputation: 127543
Blocked threads are blocked. Nothing can use them untill they become unblocked and return to the pool.
Upvotes: 2