@FunctionalInterface
public interface ExceptionBiConsumer<T,U,E extends java.lang.Exception>
Modifier and Type | Method and Description |
---|---|
void |
accept(T t,
U u)
Performs this operation on the given arguments.
|
default ExceptionBiConsumer<T,U,E> |
andThen(ExceptionBiConsumer<? super T,? super U,? extends E> after) |
default ExceptionRunnable<E> |
compose(ExceptionSupplier<? extends T,? extends E> before1,
ExceptionSupplier<? extends U,? extends E> before2) |
void accept(T t, U u) throws E extends java.lang.Exception
t
- the first argumentu
- the second argumentE
- if an exception occursE extends java.lang.Exception
default ExceptionBiConsumer<T,U,E> andThen(ExceptionBiConsumer<? super T,? super U,? extends E> after)
default ExceptionRunnable<E> compose(ExceptionSupplier<? extends T,? extends E> before1, ExceptionSupplier<? extends U,? extends E> before2)
Copyright © 2015 JBoss, a division of Red Hat, Inc.