org.browsermob.proxy.http.RequestCallback Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of browsermob-proxy Show documentation
Show all versions of browsermob-proxy Show documentation
A programmatic HTTP/S designed for performance and functional testing
The newest version!
package org.browsermob.proxy.http;
import org.apache.http.Header;
import org.apache.http.StatusLine;
public interface RequestCallback {
void handleStatusLine(StatusLine statusLine);
void handleHeaders(Header[] headers);
boolean reportHeader(Header header);
void reportError(Exception e);
}