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

cl.core.function.SupplierWithIOException Maven / Gradle / Ivy

The newest version!
package cl.core.function;

import java.io.IOException;

/**
 * Represents an operation which accepts no arguments, returns a result, and may throw an IO exception. 
 *  
 * @param  the type of the operation result
 */
@FunctionalInterface
public interface SupplierWithIOException {
    R get() throws IOException;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy