Uses of Class
io.vertx.reactivex.core.http.HttpServerRequest
-
Packages that use HttpServerRequest Package Description io.vertx.reactivex.core.http io.vertx.reactivex.ext.web io.vertx.reactivex.grpc.server io.vertx.reactivex.micrometer io.vertx.reactivex.openapi.validation -
-
Uses of HttpServerRequest in io.vertx.reactivex.core.http
Fields in io.vertx.reactivex.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.reactivex.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.reactivex.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.reactivex.ext.web
Methods in io.vertx.reactivex.ext.web that return HttpServerRequest Modifier and Type Method Description HttpServerRequest
RoutingContext. request()
Methods in io.vertx.reactivex.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.reactivex.grpc.server
Methods in io.vertx.reactivex.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.reactivex.micrometer
Methods in io.vertx.reactivex.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.reactivex.openapi.validation
-