public interface HttpProxy extends Handler<HttpServerRequest>
Modifier and Type | Method and Description |
---|---|
HttpProxy |
addInterceptor(ProxyInterceptor interceptor)
Add an interceptor to the interceptor chain.
|
void |
handle(HttpServerRequest request)
Handle the outbound
HttpServerRequest . |
default HttpProxy |
origin(int port,
String host)
Set the host name and port number of the origin.
|
default HttpProxy |
origin(SocketAddress address)
Set the
SocketAddress of the origin. |
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 |
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 |
reverseProxy(HttpClient client)
Create a new
HttpProxy instance. |
static HttpProxy |
reverseProxy(ProxyOptions options,
HttpClient client)
Create a new
HttpProxy instance. |
static HttpProxy reverseProxy(HttpClient client)
HttpProxy
instance.client
- the HttpClient
that forwards outbound requests to the origin.static HttpProxy reverseProxy(ProxyOptions options, HttpClient client)
HttpProxy
instance.client
- the HttpClient
that forwards outbound requests to the origin.default HttpProxy origin(SocketAddress address)
SocketAddress
of the origin.address
- the SocketAddress
of the origindefault HttpProxy origin(int port, String host)
port
- the port number of the origin serverhost
- the host name of the origin serverdefault HttpProxy originSelector(java.util.function.Function<HttpServerRequest,Future<SocketAddress>> selector)
selector
- the selectorHttpProxy originRequestProvider(java.util.function.BiFunction<HttpServerRequest,HttpClient,Future<HttpClientRequest>> provider)
provider
- the providerHttpProxy addInterceptor(ProxyInterceptor interceptor)
interceptor
- void handle(HttpServerRequest request)
HttpServerRequest
.handle
in interface Handler<HttpServerRequest>
request
- the outbound HttpServerRequest
Copyright © 2023 Eclipse. All rights reserved.