Uses of Interface
io.vertx.core.http.HttpServerRequest
-
Packages that use HttpServerRequest Package Description io.vertx.core.http -
-
Uses of HttpServerRequest in io.vertx.core.http
Fields in io.vertx.core.http with type parameters of type HttpServerRequest Modifier and Type Field Description static Handler<HttpServerRequest>HttpServerRequest. DEFAULT_INVALID_REQUEST_HANDLERThe default invalid request handler, it uses thedecoderResult()cause and the request information to determine the status code of the response to be sent.Methods in io.vertx.core.http that return HttpServerRequest Modifier and Type Method Description default HttpServerRequestHttpServerRequest. bodyHandler(Handler<Buffer> bodyHandler)Convenience method for receiving the entire request body in one piece.HttpServerRequestHttpServerRequest. customFrameHandler(Handler<HttpFrame> handler)Set a custom frame handler.HttpServerRequestHttpServerRequest. endHandler(Handler<Void> endHandler)HttpServerRequestHttpServerRequest. exceptionHandler(Handler<Throwable> handler)HttpServerRequestHttpServerRequest. fetch(long amount)HttpServerRequestHttpServerRequest. handler(Handler<Buffer> handler)HttpServerRequestHttpServerRequest. pause()HttpServerRequestHttpServerRequest. resume()default HttpServerRequestHttpServerRequest. routed(String route)Marks this request as being routed to the given route.HttpServerRequestHttpServerRequest. setExpectMultipart(boolean expect)Call this with true if you are expecting a multi-part body to be submitted in the request.HttpServerRequestHttpServerRequest. setParamsCharset(String charset)Override the charset to use for decoding the query parameter map, when none is set,UTF8is used.HttpServerRequestHttpServerRequest. streamPriorityHandler(Handler<StreamPriority> handler)Set an handler for stream priority changesHttpServerRequestHttpServerRequest. uploadHandler(Handler<HttpServerFileUpload> uploadHandler)Set an upload handler.Methods in io.vertx.core.http that return types with arguments of type HttpServerRequest Modifier and Type Method Description Handler<HttpServerRequest>HttpServer. requestHandler()Method parameters in io.vertx.core.http with type arguments of type HttpServerRequest Modifier and Type Method Description HttpServerHttpServer. invalidRequestHandler(Handler<HttpServerRequest> handler)Set ahandlerfor handling invalid requests.HttpServerHttpServer. requestHandler(Handler<HttpServerRequest> handler)Set the request handler for the server torequestHandler.
-