<R> Result<R,?> |
Result.andThen(ThrowingSupplier<Result<R,?>> op) |
<R> Result<R,?> |
Result.andThenTry(ThrowingSupplier<R> op) |
static <T> Retryer.SupplierRetryer<T> |
Retryer.of(ThrowingSupplier<T> job) |
Result<T,?> |
Result.orElse(ThrowingSupplier<Result<T,?>> op) |
Result<T,?> |
Result.orElseTry(ThrowingSupplier<T> op) |
static <T> T |
Exceptions.rethrowR(ThrowingSupplier<T> supplier)
Try to get a value from the given supplier, rethrowing any exception wrapped in a RuntimeException
|
static <T> Result<T,?> |
Result.trying(ThrowingSupplier<T> op) |