package saker.util.io.function
Functional interface similar to TriConsumer 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.
VThe type of the third argument.
public void | accept( Performs the operation for the given arguments. |
Performs the operation for the given arguments.
tThe first argument.
uThe second argument.
vThe third argument.
IOExceptionIn case of I/O error.