CompletableFuture使用(一)
创始人
2024-06-02 18:04:19
0

CompletableFuture是java8提供的异步任务创建,回调,编排和异常处理.

创建异步任务

1. runAsync(Runnable runnable),创建一个没有返回值的异步任务,接受一个Runnable接口的实现类对象.

static CompletableFuture runAsync(Runnable runnable)
示例,异步读取指定文件
 public static void main(String[] args) throws ExecutionException, InterruptedException {ExecutorService executor = Executors.newFixedThreadPool(5);CommonUtil.printThreadLog("start");CompletableFuture.runAsync(() -> {CommonUtil.printThreadLog("读取文件");String news = CommonUtil.readFile("news.txt");CommonUtil.printThreadLog(news);CommonUtil.printThreadLog("读取文件结束");},executor);//关闭线程池executor.shutdown();CommonUtil.printThreadLog("end");

2. supplyAsync(Supplier supplier),创建一个有返回值的异步任务

static  CompletableFuture supplyAsync(Supplier supplier)
示例
ExecutorService executor = Executors.newFixedThreadPool(5);CommonUtil.printThreadLog("start");CompletableFuture future = CompletableFuture.supplyAsync(() -> {CommonUtil.printThreadLog("读取文件");String news = CommonUtil.readFile("news.txt");CommonUtil.printThreadLog("读取文件结束");return news;},executor);CommonUtil.printThreadLog(future.get());//关闭线程池executor.shutdown();CommonUtil.printThreadLog("end");
示例中使用到的CommonUtil
public class CommonUtil {/*** 读取指定路径的文件* @param pathFile* @return*/public static String readFile(String pathFile){try {pathFile = "D:\\study\\zlm_platform\\src\\main\\resources\\"+pathFile;return Files.readString(Paths.get(pathFile));} catch (IOException e) {e.printStackTrace();return "";}}/*** 休眠指定毫秒数* @param millis*/public static void sleepMillis(long millis){try {TimeUnit.MILLISECONDS.sleep(millis);} catch (InterruptedException e) {e.printStackTrace();}}/*** 休眠指定秒数* @param seconds*/public static void sleepSecond(int seconds){try {TimeUnit.SECONDS.sleep(seconds);} catch (InterruptedException e) {e.printStackTrace();}}/*** 答应输出带线程信息的日志* @param message*/public static void printThreadLog(String message){String result = new StringJoiner(" | ").add(String.valueOf(System.currentTimeMillis())).add(String.format("%2d",Thread.currentThread().getId())).add(String.valueOf(Thread.currentThread().getName())).add(message).toString();System.out.println(result);}}

相关内容

热门资讯

喜欢穿一身黑的男生性格(喜欢穿... 今天百科达人给各位分享喜欢穿一身黑的男生性格的知识,其中也会对喜欢穿一身黑衣服的男人人好相处吗进行解...
发春是什么意思(思春和发春是什... 本篇文章极速百科给大家谈谈发春是什么意思,以及思春和发春是什么意思对应的知识点,希望对各位有所帮助,...
网络用语zl是什么意思(zl是... 今天给各位分享网络用语zl是什么意思的知识,其中也会对zl是啥意思是什么网络用语进行解释,如果能碰巧...
为什么酷狗音乐自己唱的歌不能下... 本篇文章极速百科小编给大家谈谈为什么酷狗音乐自己唱的歌不能下载到本地?,以及为什么酷狗下载的歌曲不是...
华为下载未安装的文件去哪找(华... 今天百科达人给各位分享华为下载未安装的文件去哪找的知识,其中也会对华为下载未安装的文件去哪找到进行解...
怎么往应用助手里添加应用(应用... 今天百科达人给各位分享怎么往应用助手里添加应用的知识,其中也会对应用助手怎么添加微信进行解释,如果能...
家里可以做假山养金鱼吗(假山能... 今天百科达人给各位分享家里可以做假山养金鱼吗的知识,其中也会对假山能放鱼缸里吗进行解释,如果能碰巧解...
一帆风顺二龙腾飞三阳开泰祝福语... 本篇文章极速百科给大家谈谈一帆风顺二龙腾飞三阳开泰祝福语,以及一帆风顺二龙腾飞三阳开泰祝福语结婚对应...
美团联名卡审核成功待激活(美团... 今天百科达人给各位分享美团联名卡审核成功待激活的知识,其中也会对美团联名卡审核未通过进行解释,如果能...
四分五裂是什么生肖什么动物(四... 本篇文章极速百科小编给大家谈谈四分五裂是什么生肖什么动物,以及四分五裂打一生肖是什么对应的知识点,希...