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

com.seejoke.wechat.util.http.RequestExecutor Maven / Gradle / Ivy

package com.seejoke.wechat.util.http;

import com.seejoke.wechat.exception.WxErrorException;
import org.apache.http.impl.client.CloseableHttpClient;

import java.io.IOException;

public interface RequestExecutor {

	T execute(CloseableHttpClient httpclient, String uri, E data)
			throws WxErrorException,  IOException;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy