This question already has answers here:
CompletableFuture | thenApply vs thenCompose

(6 个回答)


3年前关闭。




我试图理解 CompletableFuture,并遇到了 2 种方法,thenApplyAsync 和 thenCompose。
我试图了解这两者之间的区别。
CompletableFuture<String> completableFuture = CompletableFuture.supplyAsync(() -> {
    System.out.println(Thread.currentThread().getName() + " Printing hello");
    return "Hello";
}).thenCompose((String s) -> {
  return CompletableFuture.supplyAsync(() -> {
      System.out.println(Thread.currentThread().getName() + " Adding abc");
      return "abc "+s;});
}).thenApplyAsync((String s) -> {
    System.out.println(Thread.currentThread().getName() + " Adding world");
    return s + " World";
}).thenApplyAsync((String s) -> {
    System.out.println(Thread.currentThread().getName() + " Adding name");
    if (false) {
       throw new RuntimeException("Oh no exception");
    }
    return s + " player!";
}).handle((String s, Throwable t) -> {
    System.out.println(s != null ? s : "BLANK");
    System.out.println(t != null ? t.getMessage() : "BLANK Exception");
    return s != null ? s : t.getMessage();
});

我如何解释这些方法,thenApplyAsync 将在不同的线程中执行提供的函数并返回结果,但在内部它被包装在 CompletionStage 中。而 thenCompose 将返回对 CompletionStage 的引用。

那么在什么情况下,我会在 thenCompose 上使用 thenApplyAsync 吗?

浏览了这个链接,但它在谈论 thenApply ,这有点不同:
CompletableFuture | thenApply vs thenCompose

最佳答案

当您有一个返回 thenCompose 的操作和 CompletionStage 当您有一个不返回 thenApply 的操作时,您将使用 CompletionStage 。 -> 这是在 thenApply vs thenCompose

然而 Async 接口(interface)的 CompletionStage 变体有细微的差别和罕见的用例。

让我们考虑这个例子:

import java.util.concurrent.CompletableFuture;

public class Futures {

    public static void main(String[] args) throws InterruptedException {

        CompletableFuture<Void> c = CompletableFuture.runAsync(() -> {

            System.out.println("run1: " + Thread.currentThread().getId());
        });

        c.whenComplete((r, t) -> {
            System.out.println("I'm completed");
        });

        c.thenCompose(__ -> {
            System.out.println("thenCompose1: " + Thread.currentThread().getId());
            return CompletableFuture.runAsync(() -> {
                System.out.println("run2: " + Thread.currentThread().getId());
            });
        }).thenRunAsync(() -> {
            System.out.println("RunAsync1: " + Thread.currentThread().getId());
        });

        Thread.sleep(5000);

        System.out.println("Finished");
    }
}

输出类似于:
run1: 11
thenCompose1: 11
run2: 12
I'm completed
RunAsync1: 11
Finished

请注意,与影响 thenApplyAsync 的完成状态的非异步变体相比, CompletionStage 不会影响原始 future 的完成状态。

用例:
thenCompose
当您有 2 个需要顺序执行的异步操作时,您可能会使用 thenCompose:
static CompletionStage<String> insert(Object database) {
    throw new UnsupportedOperationException();
}

static CompletionStage<Object> get(String id) {
    throw new UnsupportedOperationException();
}

public static void main(String[] args) throws InterruptedException {

    Object db = new Object(); // pretend this connects to a database
    CompletionStage<Object> recordInserted = insert(db).thenCompose(id -> get(id));
}

您只能在插入后检索记录。
Async 方法的 thenXXXX 变体

想象一下,您有一个应用程序,允许用户自行注册,并且在注册后他们将收到一封确认电子邮件以确认他们的帐户。

您不希望用户在邮件服务器宕机或编写电子邮件或执行额外检查需要很长时间时一直等待。

然后您将使用 thenApplyAsync 来触发发送电子邮件逻辑,因为它对您的系统并不重要。用户可以随时返回并说“再给我发送一封电子邮件”
static CompletionStage<String> register(String username) {
    throw new UnsupportedOperationException();
}

static void sendConfirmationEmail(String username) {
    throw new UnsupportedOperationException();
}

public static void main(String[] args) throws InterruptedException {

    register("user").thenAcceptAsync(username -> sendConfirmationEmail(username));

}

在这里,您的系统将在注册完成时做出响应,但不会等待发送电子邮件,从而提高系统的响应能力。

到目前为止,我发现的 Async 变体的用例很少,但它们确实存在。

10-06 15:02