org.fabric3.spi.util.Closeable Maven / Gradle / Ivy
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