default ExceptionRunnable<E> |
ExceptionRunnable.andThen(ExceptionRunnable<? extends E> after) |
|
default ExceptionRunnable<E> |
ExceptionSupplier.andThen(ExceptionConsumer<? super T,? extends E> after) |
|
default ExceptionRunnable<E> |
ExceptionBiConsumer.compose(ExceptionSupplier<? extends T,? extends E> before1,
ExceptionSupplier<? extends U,? extends E> before2) |
|
default ExceptionRunnable<E> |
ExceptionConsumer.compose(ExceptionSupplier<? extends T,? extends E> before) |
|
default ExceptionRunnable<E> |
ExceptionRunnable.compose(ExceptionRunnable<? extends E> before) |
|
static <T,U,E extends Exception> ExceptionRunnable<E> |
Functions.exceptionCapturingRunnable(ExceptionBiConsumer<T,U,E> consumer,
T param1,
U param2) |
Get a runnable which executes the given consumer with captured values.
|
static <T,E extends Exception> ExceptionRunnable<E> |
Functions.exceptionCapturingRunnable(ExceptionConsumer<T,E> consumer,
T param) |
Get a runnable which executes the given consumer with captured values.
|