ForkJoinPool
public static interface ForkJoinPool.ForkJoinWorkerThreadFactory
ForkJoinWorkerThread
s. A ForkJoinWorkerThreadFactory
must be defined and used for ForkJoinWorkerThread
subclasses that extend base functionality or initialize threads with different contexts.Modifier and Type | Method | Description |
---|---|---|
ForkJoinWorkerThread |
newThread |
Returns a new worker thread operating in the given pool. |
ForkJoinWorkerThread newThread(ForkJoinPool pool)
execute
) causing attempted thread creation. If this method returns null or throws an exception, it is not retried until the next attempted creation (for example another call to execute
).pool
- the pool this thread works innull
if the request to create a thread is rejectedNullPointerException
- if the pool is null
© 1993, 2023, Oracle and/or its affiliates. All rights reserved.
Documentation extracted from Debian's OpenJDK Development Kit package.
Licensed under the GNU General Public License, version 2, with the Classpath Exception.
Various third party code in OpenJDK is licensed under different licenses (see Debian package).
Java and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.
https://docs.oracle.com/en/java/javase/21/docs/api/java.base/java/util/concurrent/ForkJoinPool.ForkJoinWorkerThreadFactory.html