Uses of Class
io.vertx.rxjava3.core.http.HttpServerRequest
-
-
Uses of HttpServerRequest in io.vertx.rxjava3.core.http
Fields in io.vertx.rxjava3.core.http with type parameters of type HttpServerRequest Modifier and Type Field Description static io.vertx.lang.rx.TypeArg<HttpServerRequest>
HttpServerRequest. __TYPE_ARG
Methods in io.vertx.rxjava3.core.http that return HttpServerRequest Modifier and Type Method Description HttpServerRequest
HttpServerRequest. bodyHandler(Handler<Buffer> bodyHandler)
Convenience method for receiving the entire request body in one piece.HttpServerRequest
HttpServerRequest. customFrameHandler(Handler<HttpFrame> handler)
Set a custom frame handler.HttpServerRequest
HttpServerRequest. endHandler(Handler<Void> endHandler)
HttpServerRequest
HttpServerRequest. exceptionHandler(Handler<Throwable> handler)
HttpServerRequest
HttpServerRequest. fetch(long amount)
HttpServerRequest
HttpServerRequest. handler(Handler<Buffer> handler)
static HttpServerRequest
HttpServerRequest. newInstance(HttpServerRequest arg)
HttpServerRequest
HttpServerRequest. pause()
HttpServerRequest
HttpServerRequest. resume()
HttpServerRequest
HttpServerRequest. routed(String route)
Marks this request as being routed to the given route.HttpServerRequest
HttpServerRequest. setExpectMultipart(boolean expect)
Call this with true if you are expecting a multi-part body to be submitted in the request.HttpServerRequest
HttpServerRequest. setParamsCharset(String charset)
Override the charset to use for decoding the query parameter map, when none is set,UTF8
is used.HttpServerRequest
HttpServerRequest. streamPriorityHandler(Handler<StreamPriority> handler)
Set an handler for stream priority changesHttpServerRequest
HttpServerRequest. uploadHandler(Handler<HttpServerFileUpload> uploadHandler)
Set an upload handler.Method parameters in io.vertx.rxjava3.core.http with type arguments of type HttpServerRequest Modifier and Type Method Description HttpServer
HttpServer. invalidRequestHandler(Handler<HttpServerRequest> handler)
Set ahandler
for handling invalid requests.HttpServer
HttpServer. requestHandler(Handler<HttpServerRequest> handler)
Set the request handler for the server torequestHandler
. -
Uses of HttpServerRequest in io.vertx.rxjava3.ext.web
Methods in io.vertx.rxjava3.ext.web that return HttpServerRequest Modifier and Type Method Description HttpServerRequest
RoutingContext. request()
Methods in io.vertx.rxjava3.ext.web with parameters of type HttpServerRequest Modifier and Type Method Description void
Router. handle(HttpServerRequest event)
Something has happened, so handle it. -
Uses of HttpServerRequest in io.vertx.rxjava3.grpc.server
Methods in io.vertx.rxjava3.grpc.server with parameters of type HttpServerRequest Modifier and Type Method Description void
GrpcServer. handle(HttpServerRequest event)
Something has happened, so handle it. -
Uses of HttpServerRequest in io.vertx.rxjava3.httpproxy
Methods in io.vertx.rxjava3.httpproxy that return HttpServerRequest Modifier and Type Method Description HttpServerRequest
ProxyRequest. proxiedRequest()
Methods in io.vertx.rxjava3.httpproxy with parameters of type HttpServerRequest Modifier and Type Method Description void
HttpProxy. handle(HttpServerRequest request)
Handle the outboundHttpServerRequest
.static ProxyRequest
ProxyRequest. reverseProxy(HttpServerRequest proxiedRequest)
Create a newProxyRequest
instance, the proxied request will be paused.Method parameters in io.vertx.rxjava3.httpproxy with type arguments of type HttpServerRequest Modifier and Type Method Description HttpProxy
HttpProxy. originSelector(java.util.function.Function<HttpServerRequest,Single<SocketAddress>> selector)
Set a selector that resolves the origin address based on the incoming HTTP request. -
Uses of HttpServerRequest in io.vertx.rxjava3.micrometer
Methods in io.vertx.rxjava3.micrometer that return types with arguments of type HttpServerRequest Modifier and Type Method Description static Handler<HttpServerRequest>
PrometheusRequestHandler. create()
Creates a handler with a new PrometheusMeterRegistry and the default metrics endpoint ("/metrics").static Handler<HttpServerRequest>
PrometheusRequestHandler. create(io.micrometer.prometheusmetrics.PrometheusMeterRegistry registry)
Creates a handler with the specified PrometheusMeterRegistry and the default metrics endpoint ("/metrics").static Handler<HttpServerRequest>
PrometheusRequestHandler. create(io.micrometer.prometheusmetrics.PrometheusMeterRegistry registry, String metricsEndpoint)
Creates a handler with the specified PrometheusMeterRegistry and metrics endpoint. -
Uses of HttpServerRequest in io.vertx.rxjava3.openapi.validation
-