Package java.util.concurrent
Interface ForkJoinPool.ForkJoinWorkerThreadFactory
-
- Enclosing class:
- ForkJoinPool
public static interface ForkJoinPool.ForkJoinWorkerThreadFactoryFactory for creating newForkJoinWorkerThreads. AForkJoinWorkerThreadFactorymust be defined and used forForkJoinWorkerThreadsubclasses that extend base functionality or initialize threads with different contexts.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ForkJoinWorkerThreadnewThread(ForkJoinPool pool)Returns a new worker thread operating in the given pool.
-
-
-
Method Detail
-
newThread
ForkJoinWorkerThread newThread(ForkJoinPool pool)
Returns a new worker thread operating in the given pool.- Parameters:
pool- the pool this thread works in- Returns:
- the new worker thread
- Throws:
NullPointerException- if the pool is null
-
-