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

me.chanjar.weixin.common.util.http.RequestExecutor Maven / Gradle / Ivy

There is a newer version: 4.6.9.B
Show newest version
package me.chanjar.weixin.common.util.http;

import me.chanjar.weixin.common.error.WxErrorException;

import java.io.IOException;

/**
 * http请求执行器
 *
 * @param  返回值类型
 * @param  请求参数类型
 * @author Daniel Qian
 */
public interface RequestExecutor {

  /**
   * @param uri  uri
   * @param data 数据
   */
  T execute(String uri, E data) throws WxErrorException, IOException;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy