Author: Алексей

ConcurrencyJavaSERelevant topics

Understanding Executors

by:

Executors (and ThreadPools used by them) help meet two of the same needs that Threads do: With Executors, developer handles need 1. ThreadPools help in handling …

ConcurrencyJavaSERelevant topics

About ThreadFactory

by:

java.util.concurrent.ThreadFactory itself is an interface. Its implementations are objects that create new threads on demand. Using thread factories eliminates the need of calls to new Thread. …