com.github.kristofa.brave.http.HttpClientRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of brave-http Show documentation
Show all versions of brave-http Show documentation
Abstraction that makes it easier to implement brave in http clients and servers.
package com.github.kristofa.brave.http;
/**
* @deprecated Replaced by {@code HttpClientAdapter} from brave-http
*/
@Deprecated
public interface HttpClientRequest extends HttpRequest {
/**
* Adds headers to request.
*
* @param header header name.
* @param value header value.
*/
void addHeader(String header, String value);
}