按顺序运行异步操作

问题描述 投票:0回答:1

我有一系列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);
}

我的代码随机执行。

  1. 我该怎么做才能确保订单?
  2. 我怎样才能将结果最终结合起来?例如,如果一切都是真的吗?
  3. 在一切都完成后应用回调来检查结果?
java concurrency completable-future
1个回答
1
投票

您当前的解决方案立即调用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));
© www.soinside.com 2019 - 2024. All rights reserved.