打破可完成的未来然后应用链

时间:2018-01-30 01:13:49

标签: java completable-future

我有很多看起来像这样的电话。问题是下一个电话完全取决于前一个电话。如果没有任何对话从他们那里获取消息是没有意义的,所以我只想打破这个链。我用Holger的答案读了几个主题,但我觉得我还是不完全理解这一点。有人可以根据这段代码给我一些例子吗?

public CompletableFuture<Set<Conversation>> fetchConversations(List<Information> data, String sessionId)
{
    return myservice
        .get(prepareRequest(data, sessionId))
        .thenApply(HtmlResponse::getDocument)
        .thenApply(this::extractConversationsFromDocument);
}
public CompletableFuture<Elements> fetchMessagesFromConversation(String Url, String sessionId)
{
    return mySerice
        .get(prepareRequest(url, sessionId))
        .thenApply(HtmlResponse::getDocument)
        .thenApply(this::extractMessageFromConversation);
}

1 个答案:

答案 0 :(得分:2)

从任何链式步骤中抛出异常将跳过所有后续步骤:将调用thenApply()回调中的任何一个,并且将在发生异常时解决将来的问题。你可以用它来打破你的链条。例如,请考虑以下代码:

public CompletableFuture<Set<Conversation>> fetchConversations(List<Information> data, String sessionId) {
    return myservice
            .get(prepareRequest(data, sessionId))
            .thenApply(HtmlResponse::getDocument)
            .thenApply(value -> {
                if (checkSomeCondition(value)) 
                    throw new CompletionException(new CustomException("Reason"));
                return value;
            })
            .thenApply(this::extractConversationsFromDocument)
            .exceptionally(e -> {
                // the .thenApply(this::extractConversationsFromDocument) step 
                // was not executed
                return Collections.emptySet(); //or null
            });
}

您可以添加一个步骤来检查上一步返回的值,并根据某些条件抛出异常。

然后在最后.thenApply之后,您可以添加exceptionally处理程序,并返回空的Setnull或其他内容作为不成功的结果。

您也可以省略exceptionally处理程序。在这种情况下,您必须在链的末尾捕获异常,最后调用.get()

try {
    Set<Conversation> conversations = fetchConversations(data, id).get();
} catch (InterruptedException e) {
    // handle the InterruptedException
    e.printStackTrace();
} catch (ExecutionException e) {
    // handle the ExecutionException
    // e.getCause() is your CustomException or any other exception thrown from the chain
}