Package io.smallrye.common.function
Interface ExceptionRunnable<E extends Exception>
-
public interface ExceptionRunnable<E extends Exception>An operation that can throw an exception.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default ExceptionRunnable<E>andThen(ExceptionRunnable<? extends E> after)default ExceptionRunnable<E>compose(ExceptionRunnable<? extends E> before)voidrun()Run the operation.
-
-
-
Method Detail
-
andThen
default ExceptionRunnable<E> andThen(ExceptionRunnable<? extends E> after)
-
compose
default ExceptionRunnable<E> compose(ExceptionRunnable<? extends E> before)
-
-