Most visited

Recently visited

Added in API level 21

ForkJoinPool.ForkJoinWorkerThreadFactory

public static interface ForkJoinPool.ForkJoinWorkerThreadFactory

java.util.concurrent.ForkJoinPool.ForkJoinWorkerThreadFactory


Factory for creating new ForkJoinWorkerThreads. A ForkJoinWorkerThreadFactory must be defined and used for ForkJoinWorkerThread subclasses that extend base functionality or initialize threads with different contexts.

Summary

Public methods

abstract ForkJoinWorkerThread newThread(ForkJoinPool pool)

Returns a new worker thread operating in the given pool.

Public methods

newThread

Added in API level 21
ForkJoinWorkerThread newThread (ForkJoinPool pool)

Returns a new worker thread operating in the given pool.

Parameters
pool ForkJoinPool: the pool this thread works in
Returns
ForkJoinWorkerThread the new worker thread, or null if the request to create a thread is rejected
Throws
NullPointerException if the pool is null

Hooray!