saker.build Documentation TaskDoc JavaDoc Packages
Functional interface similar to Consumer but is usable in an I/O error-prone context.

The method of this interface may throw an IOException.

TThe type of the first argument.
Methods
public void
accept(T t)
Performs the operation for the given argument.
public abstract void accept(T t) throws IOException
Performs the operation for the given argument.
tThe first argument.
IOExceptionIn case of I/O error.