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

top.jfunc.http.component.DefaultCloser Maven / Gradle / Ivy

package top.jfunc.http.component;

import top.jfunc.common.utils.IoUtil;

import java.io.Closeable;
import java.io.IOException;

/**
 * 关闭执行器
 * @author xiongshiyan at 2020/1/6 , contact me with email [email protected] or phone 15208384257
 */
public class DefaultCloser implements Closer{
    @Override
    public void close(Closeable closeable) throws IOException{
        IoUtil.close(closeable);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy