top.jfunc.http.component.Closer Maven / Gradle / Ivy
package top.jfunc.http.component;
import java.io.Closeable;
import java.io.IOException;
/**
* 关闭执行器
* @author xiongshiyan at 2020/1/6 , contact me with email [email protected] or phone 15208384257
*/
public interface Closer {
/**
* 关闭需要关闭的
* @param closeable 需要被关闭的
* @throws IOException IOException
*/
void close(Closeable closeable) throws IOException;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy