故障安全RetryPolicy-从supplyAsync

时间:2018-12-02 13:34:19

标签: java asynchronous completable-future retrypolicy

我正在实施重试策略。基本上,我想做的是在单独的线程上重试POST请求。我正在使用jhalterman(https://github.com/jhalterman/failsafe#asynchronous-api-integration)的故障保护功能,这是我的代码

Failsafe.with(retryPolicy).with(executor).future(() -> CompletableFuture.supplyAsync(() -> {
            try {
                CloseableHttpResponse response = client.execute(httpPost);
                httpPost.releaseConnection();
                client.close();
                return response;
            } catch (IOException e) {
                return null;
            }
        }).thenApplyAsync(response -> "Response: " + response)
          .thenAccept(System.out::println));

我不想在这里捕获IOException。它由重试策略处理。由于我在这里捕获到异常,因此当前不会重试。有没有办法从“ supplyAsync”引发异常,以便由重试策略处理? 谢谢。 谢谢

1 个答案:

答案 0 :(得分:0)

CompletionStage API提供了几种不同的方式来处理和处理未经检查的异常。但是在您的情况下,您得到的是Checked异常,您很不走运。您要么必须处理它,要么将其向外发送给呼叫者。如果您喜欢后一种方法,那么这是一种方法。

Failsafe.with(retryPolicy).with(executor).future(() -> CompletableFuture.supplyAsync(() -> {
            try {
                // Remainder omitted
                return response;
            } catch (IOException e) {
                throw new CompletionException(e);
            }
        }).thenApplyAsync(response -> "Response: " + response)
          .thenAccept(System.out::println));