Interface IOConsumer<T>

Type Parameters:
T - the type of the input to the operation.
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>
Represents an I/O operation that accepts a single input argument and returns no result.

This interface is similar to Consumer except that it is allowed to throw an IOException.

Author:
Garret Wilson
See Also: