Uses of Class
java.util.concurrent.ForkJoinPool
-
Packages that use ForkJoinPool 软件包 描述 java.util.concurrent 实用程序类通常用于并发编程。 -
-
Uses of ForkJoinPool in java.util.concurrent
Methods in java.util.concurrent that return ForkJoinPool Modifier and Type 方法 描述 static ForkJoinPool
ForkJoinPool. commonPool()
返回公共池实例。static ForkJoinPool
ForkJoinTask. getPool()
返回托管当前线程的池,如果当前线程正在任何ForkJoinPool外部执行,则返回null
。ForkJoinPool
ForkJoinWorkerThread. getPool()
返回托管此线程的池。Methods in java.util.concurrent with parameters of type ForkJoinPool Modifier and Type 方法 描述 ForkJoinWorkerThread
ForkJoinPool.ForkJoinWorkerThreadFactory. newThread(ForkJoinPool pool)
返回在给定池中运行的新工作线程。Constructors in java.util.concurrent with parameters of type ForkJoinPool Constructor 描述 ForkJoinWorkerThread(ForkJoinPool pool)
在给定的池中创建一个ForkJoinWorkerThread。Constructor parameters in java.util.concurrent with type arguments of type ForkJoinPool Constructor 描述 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.
-