Uses of Interface
java.util.concurrent.ForkJoinPool.ForkJoinWorkerThreadFactory
-
Uses of ForkJoinPool.ForkJoinWorkerThreadFactory in java.util.concurrent
Modifier and TypeFieldDescriptionstatic final ForkJoinPool.ForkJoinWorkerThreadFactory
ForkJoinPool.defaultForkJoinWorkerThreadFactory
Creates a new ForkJoinWorkerThread.Modifier and TypeMethodDescriptionForkJoinPool.getFactory()
Returns the factory used for constructing new workers.ModifierConstructorDescriptionForkJoinPool
(int parallelism, ForkJoinPool.ForkJoinWorkerThreadFactory factory, Thread.UncaughtExceptionHandler handler, boolean asyncMode) Creates aForkJoinPool
with the given parameters (using defaults for others -- seeForkJoinPool(int, ForkJoinWorkerThreadFactory, UncaughtExceptionHandler, boolean, int, int, int, Predicate, long, TimeUnit)
).ForkJoinPool
(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.