JDK8-CompletableFuture

Future介绍

CompletableFuture

Future虽然可以实现获取异步执行结果的需求,但是它没有提供通知的机制,我们无法得知Future什么时候完成。要么使用阻塞,在future.get()的地方等待future返回的结果,这时又变成同步操作。要么使用isDone()轮询地判断Future是否完成,这样会耗费CPU的资源。在Java 8中, 新增加了一个CompletableFuture,提供了函数式编程的能力,可以通过回调的方式处理计算结果,并且提供了转换和组合CompletableFuture的方法。

说明示例

@Test
public void test1() throws Exception {
    // 创建一个CompletableFuture对象
    CompletableFuture<String> future1 = new CompletableFuture<>();
    // 对CompletableFuture设置一个结束通知
    future1.whenComplete(new BiConsumer<String, Throwable>() {
        @Override
        public void accept(String s, Throwable throwable) {
            log.info("s={},throwable={}", s, throwable);
        }
    });

    // 复杂的事情开一个线程
    Thread thread = new Thread(() -> {
        String result1 = Computer.longTimeDoSomething();
        // 完成异步执行,并返回future的结果
        future1.complete(result1);
    });
    thread.start();

    String result1 = future1.get();
    log.info("结果={}", result1);

}

CompletableFuture类实现了CompletionStage和Future接口,我们还是可以像以前一样通过阻塞(如上get()方法)或者轮询(isDone()方法)的方式获得结果,那就没有什么新特性了。

实例创建

public static CompletableFuture<Void>   runAsync(Runnable runnable)
public static CompletableFuture<Void>   runAsync(Runnable runnable, Executor executor)
public static <U> CompletableFuture<U>  supplyAsync(Supplier<U> supplier)
public static <U> CompletableFuture<U>  supplyAsync(Supplier<U> supplier, Executor executor)

runAsync表示执行一个不需要任务结果的异步任务,supplyAsync表示执行一个需要结果的一个异步任务。请注意,它们都不需要我们手动创建一个thread,内部已经帮我们处理了。没有指定Executor的方法会使用ForkJoinPool.commonPool()作为它的线程池执行异步代码,指定Executor的参数就用自己的线程池。

示例:

@Test
public void test2() throws Exception {
    // 做一个复杂的任务
    CompletableFuture<String> completableFuture = CompletableFuture.supplyAsync(() -> {
        return Computer.longTimeDoSomething();
    });
    // 设置任务结果通知
    Future future = completableFuture.whenComplete((result, throwable) -> {
        log.info("结果={},异常信息={}", result, throwable);
    });
    log.info("do something ...");
    // 获取任务结果(会阻塞主线程)
    log.info("result={}", future.get());
}

以上代码函数式编程示例是:

@Test
public void test3() throws Exception {
    Object[] objects = new Object[2];
    CompletableFuture.supplyAsync(() -> {
        return Computer.longTimeDoSomething();
    }).whenComplete((result, throwable) -> {
        log.info("结果={},异常信息={}", result, throwable);
        objects[0] = result;
    });

    System.in.read();
}

对异步任务结果的处理

CompletableFuture继承了CompletionStage接口,CompletionStage接口有很多对结果的处理方法,每个方法都三个,形式是:xxx,xxxAsync,xxxAsync

whenComplete (BiConsumer<? super T, ? super Throwable> action);
whenCompleteAsync (BiConsumer<? super T, ? super Throwable> action);
whenCompleteAsync (BiConsumer<? super T, ? super Throwable> action, Executor executor);

从命名上也好理解,以Async结尾的方法都是可以异步执行的,如果指定了线程池,会在指定的线程池中执行,如果没有指定,默认会在ForkJoinPool.commonPool()线程池中执行。

当运行完成时: whenComplete

whenCompletes可以对结果的记录

@Test
public void testWhenComplete() throws Exception {
    CompletableFuture<String> completableFuture1 = CompletableFuture.supplyAsync(() -> {
        return Computer.longTimeDoSomething();
    });
    Future future1 = completableFuture1.whenComplete((result, throwable) -> {
        log.info("结果={},异常信息={}", result, throwable);
    });
    log.info("do something ...");
    log.info("future1 result={}", future1.get());
    System.in.read();
}
[    main]do something ...
[worker-1]结果=DoSomething-Result,异常信息=null
[    main]future1 result=DoSomething-Result

进行变换:thenApply

可以对结果进行修改

@Test
public void testThenApply() throws Exception {
    CompletableFuture<String> completableFuture1 = CompletableFuture.supplyAsync(() -> {
        return Computer.longTimeDoSomething();
    });
    Future future = completableFuture1.thenApply((result) -> {
        return result + "_" + System.currentTimeMillis();
    });

    log.info("do something ...");

    log.info("future2 result={}", future.get());
    System.in.read();
}
[    main]do something ...
[    main]future2 result=DoSomething-Result_1597467670713

进行消费:thenAccept

收到对结果后可以做别的事情处理

@Test
public void testThenAccept() throws Exception {
    CompletableFuture<String> completableFuture1 = CompletableFuture.supplyAsync(() -> {
        return Computer.longTimeDoSomething();
    });

    Future future = completableFuture1.thenAccept((result) -> {
        log.info("对结果进行消费处理,result={}", result);
    });

    log.info("do something ...");

    log.info("future3 result={}", future.get());
    System.in.read();
}
[    main]do something ...
[worker-1]对结果进行消费处理,result=DoSomething-Result
[    main]future3 result=null

对结果不关心,执行下一个操作:thenRun

对结果不关系,做自己的处理

@Test
public void testThenRun() throws Exception {
    CompletableFuture<String> completableFuture1 = CompletableFuture.supplyAsync(() -> {
        return Computer.longTimeDoSomething();
    });

    Future future = completableFuture1.thenRun(() -> {
        log.info("对结果不关系,做自己的处理");
    });

    log.info("do something ...");

    log.info("future4 result={}", future.get());
    System.in.read();
}
[    main]do something ...
[worker-1]对结果不关系,做自己的处理
[    main]future4 result=null

将两个任务结果结合:thenCombine

将两个任务的结果一起返回

@Test
public void testThenCombine() throws Exception {
    CompletableFuture future1 = CompletableFuture.supplyAsync(() -> {
        return Computer.longTimeDoSomething();
    });
    CompletableFuture future2 = CompletableFuture.supplyAsync(() -> {
        return Computer.complexCompute();
    });

    Object[] results = (Object[]) future1.thenCombine(future2, (result1, result2) -> {
        Object[] resultObj = new Object[2];
        resultObj[0] = result1;
        resultObj[1] = result2;
        return resultObj;
    }).join();
    log.info("result0={},result1={}", results[0], results[1]);
}
[    main]result0=DoSomething-Result,result1=100

在两个任务都运行完执行:thenAcceptBoth

可以对收到两个任务的结果后做处理

@Test
public void testThenAcceptBoth() throws Exception {

    CompletableFuture.supplyAsync(() -> {
        return Computer.longTimeDoSomething();
    }).thenAcceptBoth(CompletableFuture.supplyAsync(() -> {
        return Computer.complexCompute();
    }),(s1,s2)->{
        System.out.println(s1);
        System.out.println(s2);
    });
    System.in.read();
}
DoSomething-Result
100
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 213,254评论 6 492
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 90,875评论 3 387
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 158,682评论 0 348
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 56,896评论 1 285
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,015评论 6 385
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,152评论 1 291
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,208评论 3 412
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 37,962评论 0 268
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,388评论 1 304
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,700评论 2 327
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 38,867评论 1 341
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,551评论 4 335
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,186评论 3 317
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,901评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,142评论 1 267
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 46,689评论 2 362
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 43,757评论 2 351