-
- All Superinterfaces:
IOConsumerE<T,RuntimeException>
- 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 IOConsumer<T> extends IOConsumerE<T,RuntimeException>
A consumer that is allowed to throwIOException.- See Also:
Consumer
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidaccept(T t)-
Methods inherited from interface com.aoapps.lang.io.function.IOConsumerE
andThen
-
-
-
-
Method Detail
-
accept
void accept(T t) throws IOException
- Specified by:
acceptin interfaceIOConsumerE<T,RuntimeException>- Throws:
IOException
-
-