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

uk.ac.starlink.util.IOSupplier Maven / Gradle / Ivy

There is a newer version: 4.3
Show newest version
package uk.ac.starlink.util;

import java.io.IOException;

/**
 * Supplier-like interface that allows an IOException to be thrown.
 *
 * @see   java.util.function.Supplier
 */
@FunctionalInterface
public interface IOSupplier {

    /**
     * Gets a result.
     *
     * @return   result
     * @throws  IOException  in case of error
     */
    T get() throws IOException;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy