java – CompletableFuture |然后应用vs thenCompose

前端之家收集整理的这篇文章主要介绍了java – CompletableFuture |然后应用vs thenCompose前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我不能让我的头围绕thenApply()和thenCompose()之间的区别.

那么有人可以提供一个有效的用例吗?

Java文档:

thenApply(Function<? super T,? extends U> fn)

Returns a new CompletionStage that,when this stage completes
normally,is executed with this stage’s result as the argument to the
supplied function.

thenCompose(Function<? super T,? extends CompletionStage<U>> fn)

Returns a new CompletionStage that,is executed with this stage as the argument to the supplied
function.

我得到thenCompon的第二个参数扩展了CompletionStage,然后应用不会.

有人可以提供一个例子,在这种情况下,我必须使用然后应用,当thenCompose?

解决方法

那么如果你有一个同步映射函数,那么应用它.
CompletableFuture<Integer> future = 
    CompletableFuture.supplyAsync(() -> 1)
                     .thenApply(x -> x+1);

那么如果你有一个异步映射函数(即返回一个CompletableFuture函数),那么使用该函数.然后它将直接返回结果,而不是嵌套的未来.

CompletableFuture<Integer> future = 
    CompletableFuture.supplyAsync(() -> 1)
                     .thenCompose(x -> CompletableFuture.supplyAsync(() -> x+1));
原文链接:https://www.f2er.com/java/127060.html

猜你在找的Java相关文章