* @param maxRequestTime The maximum amount of time a request can be in progress before it is forcibly closed
* @param next The next handler to invoke if the proxy client does not know how to proxy the request
* @return The proxy handler
*/
public static ProxyHandler proxyHandler(ProxyClient proxyClient, int maxRequestTime, HttpHandler next) {
return new ProxyHandler(proxyClient, maxRequestTime, next);
}