重试工具新增获取异常方法

This commit is contained in:
Toint 2025-03-03 17:28:58 +08:00
parent 0585b3c6b7
commit a4c358dca3

View File

@ -124,6 +124,10 @@ public class RetryableTask<T> {
* 重试间隔默认1秒
*/
private Duration delay = Duration.ofSeconds(1);
/**
* 异常信息
*/
private Throwable throwable;
/**
* 构造方法内部使用调用请使用请用ofXXX
@ -174,6 +178,24 @@ public class RetryableTask<T> {
return Optional.ofNullable(this.result);
}
/**
* 获取结果, 如果无法获取结果, 则抛出最后一次执行时的异常
*
* @return 结果
*/
public T orElseThrow() throws Throwable {
return Optional.ofNullable(this.result).orElseThrow(() -> this.throwable().orElse(new RuntimeException()));
}
/**
* 获取异常
*
* @return 返回包装了异常的 {@link Optional}对象
*/
public Optional<Throwable> throwable() {
return Optional.ofNullable(this.throwable);
}
/**
* 异步执行重试方法
*
@ -216,6 +238,7 @@ public class RetryableTask<T> {
ThreadUtil.sleep(delay.toMillis());
}
this.throwable = th;
return this;
}