ForkJoinPool.this
- this()
- this(int parallelism)
- this(int parallelism, ForkJoinWorkerThreadFactory factory, UncaughtExceptionHandler handler, bool asyncMode)
- this(int parallelism, ForkJoinWorkerThreadFactory factory, UncaughtExceptionHandler handler, bool asyncMode, int corePoolSize, int maximumPoolSize, int minimumRunnable, Predicate!(ForkJoinPool) saturate, Duration keepAliveTime)
hunt concurrency ForkJoinPool ForkJoinPool
constructorsfunctionsstatic functionsstatic variablesvariables
Creates a {@code ForkJoinPool} with the indicated parallelism level, using defaults for all other parameters (see {@link #ForkJoinPool(int, ForkJoinWorkerThreadFactory, UncaughtExceptionHandler, bool, int, int, int, Predicate, long, TimeUnit)}).
@param parallelism the parallelism level @throws IllegalArgumentException if parallelism less than or equal to zero, or greater than implementation limit @throws SecurityException if a security manager exists and the caller is not permitted to modify threads because it does not hold {@link java.lang.RuntimePermission}{@code ("modifyThread")}