Uses of Interface
org.wildfly.common.function.ExceptionRunnable
-
Packages that use ExceptionRunnable Package Description org.wildfly.common.function Classes which implement useful functions which are missing fromjava.util.function
. -
-
Uses of ExceptionRunnable in org.wildfly.common.function
Methods in org.wildfly.common.function that return ExceptionRunnable Modifier and Type Method Description 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 java.lang.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 java.lang.Exception>
ExceptionRunnable<E>Functions. exceptionCapturingRunnable(ExceptionConsumer<T,E> consumer, T param)
Get a runnable which executes the given consumer with captured values.Methods in org.wildfly.common.function that return types with arguments of type ExceptionRunnable Modifier and Type Method Description static <E extends java.lang.Exception>
ExceptionConsumer<ExceptionRunnable<E>,E>Functions. exceptionRunnableConsumer()
Get the singleton exception consumer which accepts and runs exception runnable instances.Methods in org.wildfly.common.function with parameters of type ExceptionRunnable Modifier and Type Method Description default ExceptionRunnable<E>
ExceptionRunnable. andThen(ExceptionRunnable<? extends E> after)
default ExceptionRunnable<E>
ExceptionRunnable. compose(ExceptionRunnable<? extends E> before)
-