我有一个类,它使用CompletableFutures向两个依赖服务发出并发请求。
我的代码如下所示:
@Builder
@Slf4j
public class TestClass {
@NonNull private final ExecutorService threadPool = Executors.newFixedThreadPool(2);
@NonNull private final dependency1Client;
@NonNull private final dependency2Client;
public void myMethod() {
RequestObject1 firstDependencyRequest = RequestObject1.builder()
.attribute1("someValue")
.attribute2("secondValue");
CompletableFuture<ResultStructure1> future1 = CompletableFuture.supplyAsync(() -> dependency1Client.call(firstDependencyRequest), threadPool);
RequestObject2 secondDependencyRequest = RequestObject2.builder()
.attribute1("someValue")
.attribute2("secondValue");
CompletableFuture<ResultStructure2> future2 = CompletableFuture.supplyAsync(() -> dependency2Client.call(secondDependencyRequest), threadPool);
try {
CompletableFuture finalFuture = CompletableFuture.allOf(future1, future2);
} catch (ExecutionException|InterruptedException e) {
log.error("Exception calling dependency", e);
throw new RuntimeException(e);
}
}
}
我需要两次调用依赖服务的结果。如何在不执行阻止呼叫的情况下获取它们?我最初认为我做了future1 .get(),但这是一个阻塞调用,我必须等到第一次API调用的结果。
有没有办法从这两个电话中获得结果?
答案 0 :(得分:1)
由于the JavaDoc of CompletableFuture.allOf()
表示:
否则,给定的CompletableFutures的结果(如果有的话)不会反映在返回的CompletableFuture中,但可以通过单独检查来获得。
这意味着您必须在其上调用join()
或get()
。如果您在allOf()
之后在链中执行此操作,则不会阻止,因为它已经保证所有这些都已完成。
请注意,在您的特定情况下,如果您只有2个期货,则使用thenCombine()
可能更简单,这使您可以更轻松地访问2个结果。