Module com.aoapps.lang
Package com.aoapps.lang.io.function
Interface IOBiConsumerE<T,U,Ex extends Throwable>
-
- Type Parameters:
Ex- An arbitrary exception type that may be thrown
- All Known Subinterfaces:
IOBiConsumer<T,U>
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
@FunctionalInterface public interface IOBiConsumerE<T,U,Ex extends Throwable>
A biconsumer that is allowed to throwIOExceptionand a checked exception.- See Also:
BiConsumer
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description voidaccept(T t, U u)default IOBiConsumerE<T,U,Ex>andThen(IOBiConsumerE<? super T,? super U,? extends Ex> after)
-
-
-
Method Detail
-
accept
void accept(T t, U u) throws IOException, Ex extends Throwable
- Throws:
IOExceptionEx extends Throwable
-
andThen
default IOBiConsumerE<T,U,Ex> andThen(IOBiConsumerE<? super T,? super U,? extends Ex> after) throws IOException, Ex extends Throwable
- Throws:
IOExceptionEx extends Throwable
-
-