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

com.github.dadiyang.httpinvoker.requestor.Requestor Maven / Gradle / Ivy

There is a newer version: 1.2.4
Show newest version
package com.github.dadiyang.httpinvoker.requestor;

import java.io.IOException;

/**
 * 发送请求的工具
 *
 * @author huangxuyang
 * date 2018/11/1
 */
public interface Requestor {
    /**
     * 发送语法
     *
     * @param request the request info
     * @return 发送请求后的返回值
     * @throws IOException IO异常
     */
    HttpResponse sendRequest(HttpRequest request) throws IOException;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy