CompletableFuture 异步编程基础

1. CompletableFuture 类

public class CompletableFuture<T> implements Future<T>, CompletionStage<T> {
}

1.1 CompletableFuture 工厂方法

public static <U> CompletableFuture<U> supplyAsync(Supplier<U> supplier, Executor executor)
public static CompletableFuture<Void> runAsync(Runnable runnable, Executor executor)
允许指定自定义的 Executor 来执行异步任务

public static CompletableFuture<Void> allOf(CompletableFuture<?>... cfs)
allOf() 主要用于并行执行多个异步任务,并等待所有任务都完成

1.2 CompletionStage 接口

public interface CompletionStage<T> {
    // 异步回调
    public <U> CompletionStage<U> thenApply(Function<? super T,? extends U> fn);
    public CompletionStage<Void> thenAccept(Consumer<? super T> action);
    public CompletionStage<Void> thenRun(Runnable action);
    public <U> CompletionStage<U> thenCompose
        (Function<? super T, ? extends CompletionStage<U>> fn);

    // 组合
    public <U,V> CompletionStage<V> thenCombine
        (CompletionStage<? extends U> other,
         BiFunction<? super T,? super U,? extends V> fn);
}

2. 异步计算任务 supplyAsync()

2.1 supplyAsync() 方法

@Test
public void demo() {
    CompletableFuture<String> future = CompletableFuture.supplyAsync(() -> {
        return "Hello";
    });

    try {
        // 阻塞,等待 future 完成
        String result = future.get();
        System.out.println(result);
    } catch (InterruptedException | ExecutionException e) {
        e.printStackTrace();
    }
}
private final ExecutorService executor = new ThreadPoolExecutor(5, 20, 0L,
        TimeUnit.MILLISECONDS, new LinkedBlockingQueue<>(10));

@Test
public void joinDemo() {
    CompletableFuture<Long> future = CompletableFuture.supplyAsync(() -> System.currentTimeMillis(), executor);
    Long time = future.join();
}

2.2 示例

@Test
public void demo() throws Exception {
    ArrayList<String> strings = Lists.newArrayList("111", "222");

    List<CompletableFuture<String>> futures = strings.stream()
            .map(str -> CompletableFuture.supplyAsync(() -> str))
            .collect(Collectors.toList());

    List<String> collect = futures.stream()
            .map(CompletableFuture::join)
            .collect(Collectors.toList());
    log.info("result:" + collect);
}

2.3 回调函数 thenAccept()

@Test
public void demo() {
    CompletableFuture<String> future = CompletableFuture.supplyAsync(() -> {
        return "Hello";
    });

    // 注册回调函数,当异步任务完成时打印结果
    future.thenAccept(result -> {
        System.out.println(result);
    });
}

thenAccept() 注册一个回调函数,当 CompletableFuture 完成时,该函数将接收到结果字符串并将其打印出来

2.4 模拟耗时操作

@Test
public void thenAccept() {
    CompletableFuture<String> future = CompletableFuture.supplyAsync(() -> {
        try {
            TimeUnit.SECONDS.sleep(3);
        } catch (InterruptedException e) {
            e.printStackTrace();
        }
        log.info("supplyAsync: Hello");
        return "Hello";
    });

    log.info("start");
    // 回调函数
    future.thenAccept(str -> log.info(str));
    log.info("end");

    try {
        future.get();
    } catch (InterruptedException | ExecutionException e) {
        e.printStackTrace();
    }
}

3. 异步计算任务 runAsync()

@Test
public void runAsync() {
    CompletableFuture<Void> future = CompletableFuture.runAsync(() -> {
        log.info("runAsync start...");
        try {
            TimeUnit.SECONDS.sleep(3);
        } catch (InterruptedException e) {
            e.printStackTrace();
        }
        log.info("runAsync end...");
    });

    log.info("callback1...");
    // 回调函数
    CompletableFuture<Void> callbackFuture = future.thenRun(() -> {
        log.info("thenRun start...");
        try {
            TimeUnit.SECONDS.sleep(2);
        } catch (InterruptedException e) {
            e.printStackTrace();
        }
        log.info("thenRun end...");
    });
    log.info("callback2...");

    // future.join();
    callbackFuture.join();
}

打印结果:

09:34:34.881 [main] INFO com.juc.pool.Demo - callback1...
09:34:34.881 [ForkJoinPool.commonPool-worker-1] INFO com.juc.pool.Demo - runAsync start...
09:34:34.885 [main] INFO com.pool.Demo - callback2...
09:34:37.888 [ForkJoinPool.commonPool-worker-1] INFO com.juc.pool.Demo - runAsync end...
09:34:37.888 [ForkJoinPool.commonPool-worker-1] INFO com.juc.pool.Demo - thenRun start...
09:34:39.890 [ForkJoinPool.commonPool-worker-1] INFO com.juc.pool.Demo - thenRun end...

4. allOf()

4.1 等待

@Test
public void demo() {

    CompletableFuture<String> future1 = CompletableFuture.supplyAsync(() -> {
        log.info("future1 start");
        try {
            TimeUnit.SECONDS.sleep(3);
        } catch (InterruptedException e) {
            e.printStackTrace();
        }
        log.info("future1 end");
        return "future1";
    });

    CompletableFuture<String> future2 = CompletableFuture.supplyAsync(() -> {
        log.info("future2 start");
        try {
            TimeUnit.SECONDS.sleep(3);
        } catch (InterruptedException e) {
            e.printStackTrace();
        }
        log.info("future2 end");
        return "future2";
    });

    CompletableFuture<Void> allFuture = CompletableFuture.allOf(future1, future2);
    CompletableFuture<Void> thenFuture = allFuture.thenAccept(unused -> {
        String join1 = future1.join();
        String join2 = future2.join();
        System.out.println(join1 + ", " + join2);
    });

    log.info("end....");
    
    // 阻塞,等待回调执行完成
    // thenFuture.join();
    try {
        thenFuture.get();
    } catch (InterruptedException | ExecutionException e) {
        e.printStackTrace();
    }
}

4.1 若改为直接 join()

CompletableFuture.allOf(future1, future2).join();
String join1 = future1.join();
String join2 = future2.join();
System.out.println(join1 + ", " + join2);

思考:
CompletableFuture.allOf().join()CompletableFuture.allOf().thenAccept().join() 区别与联系

阻塞时机:
直接 join() 立即阻塞,直到所有任务完成;
而 thenAccept().join() 先注册回调,异步执行回调,最后阻塞等待回调执行完成

结果处理:
直接 join() 不涉及结果处理;
thenAccept().join() 在所有任务完成后,执行特定的回调逻辑来处理结果

5. join() vs get()

相同点:
两者都是为了获取由CompletableFuture封装的异步操作完成后产生的最终结果

区别:
异常处理,get() 抛出一个受检异常(checked exception 必须处理), join() 抛出未检查异常(unchecked exception)

public T get() throws InterruptedException, ExecutionException {
    Object r;
    return reportGet((r = result) == null ? waitingGet(true) : r);
}

public T join() {
    Object r;
    return reportJoin((r = result) == null ? waitingGet(false) : r);
}

6. 计算

@Test
public void calculateDemo() {
    List<Integer> values = new ArrayList<>();
    for (int i = 1; i < 1000001; i += 5000) {
        values.add(i);
    }

    List<CompletableFuture<List<Integer>>> futures = new ArrayList<>();
    for (Integer value : values) {
        futures.add(CompletableFuture.supplyAsync(() -> getList(value)));
    }

    // List<List<Integer>> collect = futures.stream().map(CompletableFuture::join)
    //         .collect(Collectors.toList());

    List<Integer> list = futures.stream().map(CompletableFuture::join)
            .flatMap(Collection::stream)
            .collect(Collectors.toList());

    System.out.println("collect.size: " + list.size());
}

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

推荐阅读更多精彩内容