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 变量和类型 方法 描述 static ForkJoinPool
ForkJoinPool. commonPool()
返回公共池实例。static ForkJoinPool
ForkJoinTask. getPool()
返回托管当前线程的池,如果当前线程在任何ForkJoinPool之外执行,则返回null
。ForkJoinPool
ForkJoinWorkerThread. getPool()
返回托管此线程的池。Methods in java.util.concurrent with parameters of type ForkJoinPool 变量和类型 方法 描述 ForkJoinWorkerThread
ForkJoinPool.ForkJoinWorkerThreadFactory. newThread(ForkJoinPool pool)
返回在给定池中运行的新工作线程。Constructors in java.util.concurrent with parameters of type ForkJoinPool 构造器 描述 ForkJoinWorkerThread(ForkJoinPool pool)
创建在给定池中运行的ForkJoinWorkerThread。Constructor parameters in java.util.concurrent with type arguments of type ForkJoinPool 构造器 描述 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.
-