Uses of Interface
io.microsphere.lang.function.ThrowableSupplier
-
Packages that use ThrowableSupplier Package Description io.microsphere.lang.function io.microsphere.reflect -
-
Uses of ThrowableSupplier in io.microsphere.lang.function
Methods in io.microsphere.lang.function with parameters of type ThrowableSupplier Modifier and Type Method Description static <T> T
ThrowableSupplier. execute(ThrowableSupplier<T> supplier)
Executes the givenThrowableSupplier
with the default exception handling.static <T> T
ThrowableSupplier. execute(ThrowableSupplier<T> supplier, java.util.function.Function<java.lang.Throwable,T> exceptionHandler)
Executes the givenThrowableSupplier
with a custom exception handler. -
Uses of ThrowableSupplier in io.microsphere.reflect
Methods in io.microsphere.reflect with parameters of type ThrowableSupplier Modifier and Type Method Description static <E extends java.lang.reflect.Executable & java.lang.reflect.Member,R>
RExecutableUtils. execute(E executable, ThrowableSupplier<R> supplier)
Executes the givenExecutable
object using aThrowableSupplier
.
-