com.newpixelcoffee.odin.access.IOConsumer Maven / Gradle / Ivy
package com.newpixelcoffee.odin.access;
import java.io.IOException;
/**
* @author DocVander
*/
@FunctionalInterface
public interface IOConsumer {
void accept(T value) throws IOException;
}