top.jfunc.http.component.RequesterFactory Maven / Gradle / Ivy
package top.jfunc.http.component;
import top.jfunc.http.request.HttpRequest;
import java.io.IOException;
/**
* @author xiongshiyan at 2020/1/6 , contact me with email [email protected] or phone 15208384257
*/
public interface RequesterFactory {
/**
* 创建请求处理器
* @param httpRequest HttpRequest
* @return HttpURLConnection
* @throws IOException IOException
*/
C create(HttpRequest httpRequest) throws IOException;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy