Package akka.dispatch.forkjoin
Interface ForkJoinPool.ForkJoinWorkerThreadFactory
-
- All Known Implementing Classes:
MonitorableThreadFactory
- Enclosing class:
- ForkJoinPool
public static interface ForkJoinPool.ForkJoinWorkerThreadFactory
Factory for creating newForkJoinWorkerThread
s. AForkJoinWorkerThreadFactory
must be defined and used forForkJoinWorkerThread
subclasses that extend base functionality or initialize threads with different contexts.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ForkJoinWorkerThread
newThread(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- Throws:
java.lang.NullPointerException
- if the pool is null
-
-