本文整理汇总了Java中java.util.concurrent.ForkJoinPool.defaultForkJoinWorkerThreadFactory方法的典型用法代码示例。如果您正苦于以下问题:Java ForkJoinPool.defaultForkJoinWorkerThreadFactory方法的具体用法?Java ForkJoinPool.defaultForkJoinWorkerThreadFactory怎么用?Java ForkJoinPool.defaultForkJoinWorkerThreadFactory使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类java.util.concurrent.ForkJoinPool
的用法示例。
在下文中一共展示了ForkJoinPool.defaultForkJoinWorkerThreadFactory方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: execute
import java.util.concurrent.ForkJoinPool; //导入方法依赖的package包/类
public void execute()
{
finished = new CountDownLatch(Width * Height);
ForkJoinPool pool = new ForkJoinPool(
nThreads,
ForkJoinPool.defaultForkJoinWorkerThreadFactory,
(t,e) -> e.printStackTrace(),
false);
for (Cell cell : cells) {
pool.execute(cell.neighbors[0]);
}
try {
finished.await();
}
catch (InterruptedException ex) {
ex.printStackTrace();
}
pool.shutdown();
}
示例2: DefaultThreadPool
import java.util.concurrent.ForkJoinPool; //导入方法依赖的package包/类
private DefaultThreadPool(final int numberOfThreads, final ThreadPoolId id) {
this.id = id;
if (ThreadPoolId.WorkStealing == id) {
this.executorService = new ForkJoinPool(
numberOfThreads /* parallelism level */,
ForkJoinPool.defaultForkJoinWorkerThreadFactory,
EhSupport.getUncaughtHandler() /* uncaught exception handler */,
true /* asyncMode */
);
} else {
this.executorService = Executors.newFixedThreadPool(
numberOfThreads,
(runnable) -> defaultFactory.newThread(() -> EhSupport.fatalOnException(() -> {
Thread.currentThread().setUncaughtExceptionHandler(EhSupport.getUncaughtHandler());
runnable.run();
}))
);
}
if (ThreadPoolId.NonBlocking == this.id) {
try {
this.ioService = EhSupport.propagateFn(
() -> AsynchronousChannelGroup.withThreadPool(this.executorService)
);
} catch (final Throwable throwable) {
this.executorService.shutdownNow();
throw throwable;
}
} else {
this.ioService = null;
}
}
示例3: asyncSingletonPool
import java.util.concurrent.ForkJoinPool; //导入方法依赖的package包/类
private static ForkJoinPool asyncSingletonPool() {
return new ForkJoinPool(1,
ForkJoinPool.defaultForkJoinWorkerThreadFactory,
null, true);
}