Uses of Class
java.util.concurrent.ForkJoinPool
Packages that use ForkJoinPool
-
Uses of ForkJoinPool in java.util.concurrent
Methods in java.util.concurrent that return ForkJoinPoolModifier and TypeMethodDescriptionstatic ForkJoinPool
ForkJoinPool.commonPool()
Returns the common pool instance.static ForkJoinPool
ForkJoinTask.getPool()
Returns the pool hosting the current thread, ornull
if the current thread is executing outside of any ForkJoinPool.ForkJoinWorkerThread.getPool()
Returns the pool hosting this thread.Methods in java.util.concurrent with parameters of type ForkJoinPoolModifier and TypeMethodDescriptionForkJoinPool.ForkJoinWorkerThreadFactory.newThread
(ForkJoinPool pool) Returns a new worker thread operating in the given pool.Constructors in java.util.concurrent with parameters of type ForkJoinPoolModifierConstructorDescriptionprotected
ForkJoinWorkerThread
(ThreadGroup group, ForkJoinPool pool, boolean preserveThreadLocals) Creates a ForkJoinWorkerThread operating in the given thread group and pool, and with the given policy for preserving ThreadLocals.protected
Creates a ForkJoinWorkerThread operating in the given pool.Constructor parameters in java.util.concurrent with type arguments of type ForkJoinPoolModifierConstructorDescriptionForkJoinPool
(int parallelism, ForkJoinPool.ForkJoinWorkerThreadFactory factory, Thread.UncaughtExceptionHandler handler, boolean asyncMode, int corePoolSize, int maximumPoolSize, int minimumRunnable, Predicate<? super ForkJoinPool> saturate, long keepAliveTime, TimeUnit unit) Creates aForkJoinPool
with the given parameters.