Uses of Interface
org.wildfly.common.function.ExceptionConsumer
-
Packages that use ExceptionConsumer Package Description org.wildfly.common.context Types related to management of contextual objects.org.wildfly.common.function Classes which implement useful functions which are missing fromjava.util.function
. -
-
Uses of ExceptionConsumer in org.wildfly.common.context
Methods in org.wildfly.common.context with parameters of type ExceptionConsumer Modifier and Type Method Description default <T,E extends java.lang.Exception>
voidContextual. runExConsumer(ExceptionConsumer<T,E> consumer, T param)
Run the given task with this contextual object selected. -
Uses of ExceptionConsumer in org.wildfly.common.function
Methods in org.wildfly.common.function that return ExceptionConsumer Modifier and Type Method Description default ExceptionConsumer<T,E>
ExceptionConsumer. andThen(ExceptionConsumer<? super T,? extends E> after)
default ExceptionConsumer<T,E>
ExceptionFunction. andThen(ExceptionBiConsumer<? super T,? super R,? extends E> after)
default ExceptionConsumer<T,E>
ExceptionFunction. andThen(ExceptionConsumer<? super R,? extends E> after)
default ExceptionConsumer<T,E>
ExceptionConsumer. compose(ExceptionConsumer<? super T,? extends E> before)
static <T,E extends java.lang.Exception>
ExceptionConsumer<T,E>Functions. discardingExceptionConsumer()
Get a consumer which discards the values it is given.static <E extends java.lang.Exception>
ExceptionConsumer<ExceptionRunnable<E>,E>Functions. exceptionRunnableConsumer()
Get the singleton exception consumer which accepts and runs exception runnable instances.static ExceptionConsumer<java.lang.Runnable,java.lang.RuntimeException>
Functions. runnableExceptionConsumer()
Get the singleton exception consumer which accepts and runs runnable instances.Methods in org.wildfly.common.function that return types with arguments of type ExceptionConsumer Modifier and Type Method Description static <T,E extends java.lang.Exception>
ExceptionBiConsumer<ExceptionConsumer<T,E>,T,E>Functions. exceptionConsumerBiConsumer()
Get the singleton consumer which accepts a consumer and an argument to hand to it.Methods in org.wildfly.common.function with parameters of type ExceptionConsumer Modifier and Type Method Description default ExceptionBiConsumer<T,U,E>
ExceptionBiFunction. andThen(ExceptionConsumer<R,? extends E> after)
default ExceptionConsumer<T,E>
ExceptionConsumer. andThen(ExceptionConsumer<? super T,? extends E> after)
default ExceptionConsumer<T,E>
ExceptionFunction. andThen(ExceptionConsumer<? super R,? extends E> after)
default ExceptionRunnable<E>
ExceptionSupplier. andThen(ExceptionConsumer<? super T,? extends E> after)
default ExceptionConsumer<T,E>
ExceptionConsumer. compose(ExceptionConsumer<? super T,? extends E> before)
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.
-