All Downloads are FREE. Search and download functionalities are using the official Maven repository.

se.l4.commons.io.IoFunction Maven / Gradle / Ivy

The newest version!
package se.l4.commons.io;

import java.io.IOException;

/**
 * Function that can throw {@link IOException}.
 * 
 * @author Andreas Holstenson
 *
 * @param 
 * @param 
 */
public interface IoFunction
{
	R apply(T t)
		throws IOException;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy