CompletableFuture-应用

2024-08-21 00:20
文章标签 应用 completablefuture

本文主要是介绍CompletableFuture-应用,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

在这里插入图片描述
可以看到CompletableFuture实现了CompletionStage 和Future的两个接口。CompletionStage提供了任务之间的衔接能力,而Future则是经常用于阻塞获取结果。

CompletableFuture 的内部使用了基于 ForkJoinPool 的线程池,这种线程池可以高效地调度和执行任务。CompletableFuture 的非阻塞特性得益于其对任务完成的监听机制。当任务完成时,它会遍历所有注册的回调函数,并在合适的线程中执行这些回调。通过这种机制,CompletableFuture 能够在任务完成后及时返回结果或触发后续处理逻辑,而不会阻塞主线程的执行。

使用场景

场景一 并行执行多个任务
public class FutureDemo {public static void main(String[] args) {long start = System.currentTimeMillis();CompletableFuture<Void> f1 = CompletableFuture.runAsync(() -> {task1();});CompletableFuture<Void> f2 = CompletableFuture.runAsync(() -> {task2();});CompletableFuture<Void> f3 = CompletableFuture.runAsync(() -> {task3();});CompletableFuture<Void> allOf = CompletableFuture.allOf(f1, f2, f3);try {// 所有任务一起并行allOf.get();System.out.println("all task finish cost:" + (System.currentTimeMillis() - start));} catch (InterruptedException e) {} catch (ExecutionException e) {throw new RuntimeException(e);}System.out.println("main thread finsh!!!");}public static void task1() {try {Thread.sleep(3000);} catch (InterruptedException e) {throw new RuntimeException(e);}System.out.println("task1 finish cost 3000!!!");}public static void task2() {try {Thread.sleep(6000);} catch (InterruptedException e) {throw new RuntimeException(e);}System.out.println("task2 finish cost 6000!!!");}public static void task3() {try {Thread.sleep(9000);} catch (InterruptedException e) {throw new RuntimeException(e);}System.out.println("task3 finish cost 9000!!!");}
}

可以看到运行结果,多个任务并行执行,总任务完成时间是耗时最长的任务:
在这里插入图片描述

场景一 父任务执行完毕以后 开启多个子任务
public class FutureDemo {public static void main(String[] args) {long start = System.currentTimeMillis();try {CompletableFuture<Void> f1 = CompletableFuture.runAsync(() -> {task1();});// 任务一执行完毕f1.get();CompletableFuture<Void> f2 = CompletableFuture.runAsync(() -> {task2();});CompletableFuture<Void> f3 = CompletableFuture.runAsync(() -> {task3();});CompletableFuture<Void> allOf = CompletableFuture.allOf(f2, f3);// 任务2,3并行allOf.get();System.out.println("all task finish cost:" + (System.currentTimeMillis() - start));} catch (InterruptedException e) {} catch (ExecutionException e) {throw new RuntimeException(e);}System.out.println("main thread finsh!!!");}public static void task1() {try {Thread.sleep(3000);} catch (InterruptedException e) {throw new RuntimeException(e);}System.out.println("task1 finish cost 3000!!!");}public static void task2() {try {Thread.sleep(6000);} catch (InterruptedException e) {throw new RuntimeException(e);}System.out.println("task2 finish cost 6000!!!");}public static void task3() {try {Thread.sleep(9000);} catch (InterruptedException e) {throw new RuntimeException(e);}System.out.println("task3 finish cost 9000!!!");}
}

在这里插入图片描述
由于第一个任务阻塞执行完毕,2,3任务并行执行,时间最长的执行了9秒所以总时间是12左右。

场景三 场景一的变种

A B
C
我们希望A和C都执行完以后继续往后执行,并且C的执行顺序严格在B以后。

public class FutureDemo {public static void main(String[] args) {long start = System.currentTimeMillis();try {CompletableFuture<Void> f1 = CompletableFuture.runAsync(() -> {task1();});CompletableFuture<Void> f2 = CompletableFuture.runAsync(() -> {task2();});CompletableFuture<Void> f3 = f2.thenRunAsync(() -> {task3();});CompletableFuture<Void> allOf = CompletableFuture.allOf(f1, f3);allOf.get();System.out.println("all task finish cost:" + (System.currentTimeMillis() - start));} catch (InterruptedException e) {} catch (ExecutionException e) {throw new RuntimeException(e);}System.out.println("main thread finsh!!!");}public static void task1() {try {Thread.sleep(3000);} catch (InterruptedException e) {throw new RuntimeException(e);}System.out.println("task1 finish cost 3000!!!");}public static void task2() {try {Thread.sleep(6000);} catch (InterruptedException e) {throw new RuntimeException(e);}System.out.println("task2 finish cost 6000!!!");}public static void task3() {try {Thread.sleep(9000);} catch (InterruptedException e) {throw new RuntimeException(e);}System.out.println("task3 finish cost 9000!!!");}
}

在这里插入图片描述
由于任务一是一个任务,而任务2和3是一起执行,所以相当于是两个任务并行,时间最长是任务2,3加在一起。

场景四 任取其一

这种场景什么时候使用呢?比如我们对数处理做了不同的策略,我们不知道哪个计算的速度更快,我们希望谁先出结果就优先使用。

public class FutureDemo {public static void main(String[] args) {long start = System.currentTimeMillis();try {CompletableFuture<Void> f1 = CompletableFuture.runAsync(() -> {task1();});CompletableFuture<Void> f2 = CompletableFuture.runAsync(() -> {task2();});CompletableFuture<Void> f3 = CompletableFuture.runAsync(() -> {task3();});CompletableFuture<Object> anyOf = CompletableFuture.anyOf(f1, f2, f3);// 任务2,3并行anyOf.get();System.out.println("all task finish cost:" + (System.currentTimeMillis() - start));} catch (InterruptedException e) {} catch (ExecutionException e) {throw new RuntimeException(e);}System.out.println("main thread finsh!!!");}public static void task1() {try {Thread.sleep(3000);} catch (InterruptedException e) {throw new RuntimeException(e);}System.out.println("task1 finish cost 3000!!!");}public static void task2() {try {Thread.sleep(6000);} catch (InterruptedException e) {throw new RuntimeException(e);}System.out.println("task2 finish cost 6000!!!");}public static void task3() {try {Thread.sleep(9000);} catch (InterruptedException e) {throw new RuntimeException(e);}System.out.println("task3 finish cost 9000!!!");}
}

在这里插入图片描述
可以看到这里肯定是耗时最短的任务1先执行完毕,所以 总耗时为3秒。
参考资料:
https://www.yuque.com/itlaoqi/uprrn9/nakraehf13w4xdy4

这篇关于CompletableFuture-应用的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/1091595

相关文章

Python中随机休眠技术原理与应用详解

《Python中随机休眠技术原理与应用详解》在编程中,让程序暂停执行特定时间是常见需求,当需要引入不确定性时,随机休眠就成为关键技巧,下面我们就来看看Python中随机休眠技术的具体实现与应用吧... 目录引言一、实现原理与基础方法1.1 核心函数解析1.2 基础实现模板1.3 整数版实现二、典型应用场景2

Python Dash框架在数据可视化仪表板中的应用与实践记录

《PythonDash框架在数据可视化仪表板中的应用与实践记录》Python的PlotlyDash库提供了一种简便且强大的方式来构建和展示互动式数据仪表板,本篇文章将深入探讨如何使用Dash设计一... 目录python Dash框架在数据可视化仪表板中的应用与实践1. 什么是Plotly Dash?1.1

Android Kotlin 高阶函数详解及其在协程中的应用小结

《AndroidKotlin高阶函数详解及其在协程中的应用小结》高阶函数是Kotlin中的一个重要特性,它能够将函数作为一等公民(First-ClassCitizen),使得代码更加简洁、灵活和可... 目录1. 引言2. 什么是高阶函数?3. 高阶函数的基础用法3.1 传递函数作为参数3.2 Lambda

Java中&和&&以及|和||的区别、应用场景和代码示例

《Java中&和&&以及|和||的区别、应用场景和代码示例》:本文主要介绍Java中的逻辑运算符&、&&、|和||的区别,包括它们在布尔和整数类型上的应用,文中通过代码介绍的非常详细,需要的朋友可... 目录前言1. & 和 &&代码示例2. | 和 ||代码示例3. 为什么要使用 & 和 | 而不是总是使

Python循环缓冲区的应用详解

《Python循环缓冲区的应用详解》循环缓冲区是一个线性缓冲区,逻辑上被视为一个循环的结构,本文主要为大家介绍了Python中循环缓冲区的相关应用,有兴趣的小伙伴可以了解一下... 目录什么是循环缓冲区循环缓冲区的结构python中的循环缓冲区实现运行循环缓冲区循环缓冲区的优势应用案例Python中的实现库

SpringBoot整合MybatisPlus的基本应用指南

《SpringBoot整合MybatisPlus的基本应用指南》MyBatis-Plus,简称MP,是一个MyBatis的增强工具,在MyBatis的基础上只做增强不做改变,下面小编就来和大家介绍一下... 目录一、MyBATisPlus简介二、SpringBoot整合MybatisPlus1、创建数据库和

python中time模块的常用方法及应用详解

《python中time模块的常用方法及应用详解》在Python开发中,时间处理是绕不开的刚需场景,从性能计时到定时任务,从日志记录到数据同步,时间模块始终是开发者最得力的工具之一,本文将通过真实案例... 目录一、时间基石:time.time()典型场景:程序性能分析进阶技巧:结合上下文管理器实现自动计时

Java逻辑运算符之&&、|| 与&、 |的区别及应用

《Java逻辑运算符之&&、||与&、|的区别及应用》:本文主要介绍Java逻辑运算符之&&、||与&、|的区别及应用的相关资料,分别是&&、||与&、|,并探讨了它们在不同应用场景中... 目录前言一、基本概念与运算符介绍二、短路与与非短路与:&& 与 & 的区别1. &&:短路与(AND)2. &:非短

Spring AI集成DeepSeek三步搞定Java智能应用的详细过程

《SpringAI集成DeepSeek三步搞定Java智能应用的详细过程》本文介绍了如何使用SpringAI集成DeepSeek,一个国内顶尖的多模态大模型,SpringAI提供了一套统一的接口,简... 目录DeepSeek 介绍Spring AI 是什么?Spring AI 的主要功能包括1、环境准备2

Spring AI与DeepSeek实战一之快速打造智能对话应用

《SpringAI与DeepSeek实战一之快速打造智能对话应用》本文详细介绍了如何通过SpringAI框架集成DeepSeek大模型,实现普通对话和流式对话功能,步骤包括申请API-KEY、项目搭... 目录一、概述二、申请DeepSeek的API-KEY三、项目搭建3.1. 开发环境要求3.2. mav