top.jfunc.http.component.ResponseExtractor 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 ResponseExtractor{
/**
* 从请求响应中获取信息
* @param s 请求响应
* @param httpRequest HttpRequest
* @return R
* @throws IOException IOException
*/
R extract(S s, HttpRequest httpRequest) throws IOException;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy