重试工具新增获取异常原因等相关方法

This commit is contained in:
Looly 2025-03-04 09:10:21 +08:00
parent 76bac0e6a4
commit d771c7f5ff

View File

@ -182,6 +182,7 @@ public class RetryableTask<T> {
* 获取结果, 如果无法获取结果, 则抛出最后一次执行时的异常
*
* @return 结果
* @throws Throwable 获取结果时, 如果无法获取结果, 则抛出最后一次执行时的异常
*/
public T orElseThrow() throws Throwable {
return Optional.ofNullable(this.result).orElseThrow(() -> this.throwable().orElse(new RuntimeException()));