saker.build Documentation TaskDoc JavaDoc Packages
Functional interface similar to BiConsumer 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.
UThe type of the second argument.
Methods
public void
accept(T t, U u)
Performs the operation for the given arguments.
public abstract void accept(T t, U u) throws IOException
Performs the operation for the given arguments.
tThe first argument.
uThe second argument.
IOExceptionIn case of I/O error.