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

com.github.xbynet.crawler.RequestAction Maven / Gradle / Ivy

The newest version!
package com.github.xbynet.crawler;

import java.io.Serializable;

import org.apache.http.client.methods.CloseableHttpResponse;
import org.apache.http.client.methods.HttpUriRequest;
import org.apache.http.impl.client.CloseableHttpClient;

public interface RequestAction extends Serializable {
	void before(CloseableHttpClient client,HttpUriRequest req);
	void after(CloseableHttpClient client,CloseableHttpResponse resp);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy