Uses of Interface
io.vertx.httpproxy.HttpProxy
-
Packages that use HttpProxy Package Description io.vertx.ext.web.proxy.handler io.vertx.httpproxy io.vertx.rxjava3.httpproxy -
-
Uses of HttpProxy in io.vertx.ext.web.proxy.handler
Methods in io.vertx.ext.web.proxy.handler with parameters of type HttpProxy Modifier and Type Method Description static ProxyHandler
ProxyHandler. create(HttpProxy httpProxy)
static ProxyHandler
ProxyHandler. create(HttpProxy httpProxy, int port, String host)
-
Uses of HttpProxy in io.vertx.httpproxy
Methods in io.vertx.httpproxy that return HttpProxy Modifier and Type Method Description default HttpProxy
HttpProxy. addInterceptor(ProxyInterceptor interceptor)
Add an interceptor to the interceptor chain.HttpProxy
HttpProxy. addInterceptor(ProxyInterceptor interceptor, boolean supportsWebSocketUpgrade)
Add an interceptor to the interceptor chain.default HttpProxy
HttpProxy. origin(int port, String host)
Set the host name and port number of the origin.default HttpProxy
HttpProxy. origin(SocketAddress address)
Set theSocketAddress
of the origin.HttpProxy
HttpProxy. originRequestProvider(java.util.function.BiFunction<HttpServerRequest,HttpClient,Future<HttpClientRequest>> provider)
Set a provider that creates the request to the origin server based the incoming HTTP request.default HttpProxy
HttpProxy. originSelector(java.util.function.Function<HttpServerRequest,Future<SocketAddress>> selector)
Set a selector that resolves the origin address based on the incoming HTTP request.static HttpProxy
HttpProxy. reverseProxy(HttpClient client)
Create a newHttpProxy
instance.static HttpProxy
HttpProxy. reverseProxy(ProxyOptions options, HttpClient client)
Create a newHttpProxy
instance. -
Uses of HttpProxy in io.vertx.rxjava3.httpproxy
Methods in io.vertx.rxjava3.httpproxy that return HttpProxy Modifier and Type Method Description HttpProxy
HttpProxy. getDelegate()
Methods in io.vertx.rxjava3.httpproxy with parameters of type HttpProxy Modifier and Type Method Description static HttpProxy
HttpProxy. newInstance(HttpProxy arg)
Constructors in io.vertx.rxjava3.httpproxy with parameters of type HttpProxy Constructor Description HttpProxy(HttpProxy delegate)
-