java使用异步CompletableFuture 进行计算

java使用异步CompletableFuture 进行计算,第1张

java使用异步CompletableFuture 进行计算

简单记录下,后面有时间 详细研究,

 

// 开启并行计算
List collect = dataList.getInnerOrganizations().stream()
        .map(innerOrg -> createTaskSupplier(context, innerOrg))
        .collect(Collectors.toList())
        .stream()
        .map(CompletableFuture::join)
        .collect(Collectors.toList());

logger.info("并行计算数量:{}", collect.size());


 

private CompletableFuture createTaskSupplier(OpenCategoryListContext context, Organization organization) {
	return CompletableFuture.runAsync(
			() -> do(context), "自定义线程池");
}

// 构建线程池
int processors = Runtime.getRuntime().availableProcessors();
final ForkJoinPool forkJoinPool = new ForkJoinPool(processors);

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5703792.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-17
下一篇 2022-12-17

发表评论

登录后才能评论

评论列表(0条)

保存