Package jsr166y
Interface ForkJoinPool.ForkJoinWorkerThreadFactory
- Enclosing class:
ForkJoinPool
public static interface ForkJoinPool.ForkJoinWorkerThreadFactory
Factory for creating new
ForkJoinWorkerThread
s.
A ForkJoinWorkerThreadFactory
must be defined and used
for ForkJoinWorkerThread
subclasses that extend base
functionality or initialize threads with different contexts.-
Method Summary
Modifier and TypeMethodDescriptionnewThread
(ForkJoinPool pool) Returns a new worker thread operating in the given pool.
-
Method Details
-
newThread
Returns a new worker thread operating in the given pool.- Parameters:
pool
- the pool this thread works in- Throws:
NullPointerException
- if the pool is null
-