Package io.vertx.mutiny.httpproxy
Interface ProxyInterceptor
-
public interface ProxyInterceptor
AHttpProxy
interceptor. NOTE: This class has been automatically generated from theoriginal
non Mutiny-ified interface using Vert.x codegen.
-
-
Field Summary
Fields Modifier and Type Field Description static TypeArg<ProxyResponse>
TYPE_ARG_0
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Modifier and Type Method Description io.vertx.httpproxy.ProxyInterceptor
getDelegate()
io.smallrye.mutiny.Uni<ProxyResponse>
handleProxyRequest(ProxyContext context)
io.smallrye.mutiny.Uni<Void>
handleProxyResponse(ProxyContext context)
static ProxyInterceptor
newInstance(io.vertx.httpproxy.ProxyInterceptor arg)
-
-
-
Field Detail
-
TYPE_ARG_0
static final TypeArg<ProxyResponse> TYPE_ARG_0
-
-
Method Detail
-
getDelegate
io.vertx.httpproxy.ProxyInterceptor getDelegate()
-
handleProxyRequest
io.smallrye.mutiny.Uni<ProxyResponse> handleProxyRequest(ProxyContext context)
- Parameters:
context
- the proxy context- Returns:
- when the request has actually been sent to the origin
-
handleProxyResponse
io.smallrye.mutiny.Uni<Void> handleProxyResponse(ProxyContext context)
- Parameters:
context
- the proxy context- Returns:
- when the response has actually been sent to the user-agent
-
newInstance
static ProxyInterceptor newInstance(io.vertx.httpproxy.ProxyInterceptor arg)
-
-