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

org.fabric3.spi.util.Closeable Maven / Gradle / Ivy

There is a newer version: 3.1.0
Show newest version
package org.fabric3.spi.util;

/**
 * An auto closeable that does not throw checked exceptions.
 */
public interface Closeable extends AutoCloseable {

    /**
     * Closes the resource.
     */
    void close();

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy