CompletableFuture并发任务执行用法

@Test
    void testFuture() throws ExecutionException, InterruptedException {
        CompletableFuture<String> future1 = CompletableFuture.supplyAsync(()->task1());
        CompletableFuture<String> future2 = CompletableFuture.supplyAsync(()->task2());

        log.info("并行执行");
        CompletableFuture<Void> allFutures = CompletableFuture.allOf(future1,future2);
        allFutures.get();
        log.info(future1.get() + "result " + future2.get());

    }

    String task1(){
        try {
            Thread.sleep(4000);
        } catch (InterruptedException e) {
            throw new RuntimeException(e);
        }
        return "task1 completed";
    }

    String task2(){
        try {
            Thread.sleep(4000);
        } catch (InterruptedException e) {
            throw new RuntimeException(e);
        }
        return "task2 completed";
    }

执行结果:文章来源地址https://uudwc.com/A/Oqbo2

12:10:32.855 [main] INFO  c.c.b.e.c.Test - [testFuture:247] - 并行执行
12:10:36.857 [main] INFO  c.c.b.e.c.Test - [testFuture:250] - task1 completed result task2 completed

原文地址:https://blog.csdn.net/sainazuoan1/article/details/132775888

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处: 如若内容造成侵权/违法违规/事实不符,请联系站长进行投诉反馈,一经查实,立即删除!

h
上一篇 2023年09月09日 18:34
Java List<实体类> 单字段,多字段去重,条件过滤
下一篇 2023年09月09日 18:34