我有一系列I / O操作(DB,I / O设备......)我需要按顺序运行。
@SafeVarargs
public final CompletableFuture<Boolean> execute(final Supplier<Boolean>... methods)
{
CompletableFuture<Boolean> future = null;
for (Supplier<Boolean> method : methods)
{
if (future == null)
{
future = CompletableFuture.supplyAsync(method, threadPool);
}
else
{
future.thenCombineAsync(CompletableFuture.supplyAsync(method, threadPool), (result, currentResult) -> result && currentResult,
threadPool);
}
}
return future.exceptionally(this::onException);
}
我的代码随机执行。
您当前的解决方案立即调用supplyAsync()
,然后尝试合并结果。
如果你想保证顺序执行,你应该使用thenApply()
或thenCompose()
而不是thenCombine()
:
for (Supplier<Boolean> method : methods)
{
if (future == null)
{
future = CompletableFuture.supplyAsync(method, threadPool);
}
else
{
future.thenApplyAsync(result -> result && method.get(), threadPool);
}
}
请注意,如果任何一个供应商返回false,则不会在下一个供应商处调用method.get()
,因为&&
正在短路。您可以使用单个&
来强制进行呼叫,或者交换参数。
这已经结合了所有布尔结果。您可以在循环后在结果future
上添加任何内容,例如更多thenApply()
调用,或阻止join()
调用以检索Boolean
。
请注意,此循环也可以使用流重写:
future = Arrays.stream(methods)
.reduce(CompletableFuture.completedFuture(true),
(f, method) -> f.thenApplyAsync(result -> result && method.get()),
(f1, f2) -> f1.thenCombine(f2, (result1, result2) -> result1 && result2));