Uses of Interface
io.vertx.core.http.HttpServerRequest
Packages that use HttpServerRequest
-
Uses of HttpServerRequest in io.vertx.core.http
Fields in io.vertx.core.http with type parameters of type HttpServerRequestModifier and TypeFieldDescriptionstatic final 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 HttpServerRequestModifier and TypeMethodDescriptiondefault HttpServerRequestHttpServerRequest.bodyHandler(Handler<Buffer> bodyHandler) Convenience method for receiving the entire request body in one piece.HttpServerRequest.customFrameHandler(Handler<HttpFrame> handler) Set a custom frame handler.HttpServerRequest.endHandler(Handler<Void> endHandler) HttpServerRequest.exceptionHandler(Handler<Throwable> handler) HttpServerRequest.fetch(long amount) HttpServerRequest.pause()HttpServerRequest.resume()default HttpServerRequestMarks this request as being routed to the given route.HttpServerRequest.setExpectMultipart(boolean expect) Call this with true if you are expecting a multi-part body to be submitted in the request.HttpServerRequest.setParamsCharset(String charset) Override the charset to use for decoding the query parameter map, when none is set,UTF8is used.HttpServerRequest.streamPriorityHandler(Handler<StreamPriority> handler) Set an handler for stream priority changesHttpServerRequest.uploadHandler(Handler<HttpServerFileUpload> uploadHandler) Set an upload handler.Methods in io.vertx.core.http that return types with arguments of type HttpServerRequestMethod parameters in io.vertx.core.http with type arguments of type HttpServerRequestModifier and TypeMethodDescriptionHttpServer.invalidRequestHandler(Handler<HttpServerRequest> handler) Set ahandlerfor handling invalid requests.HttpServer.requestHandler(Handler<HttpServerRequest> handler) Set the request handler for the server torequestHandler.