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.ext.web.handler io.vertx.reactivex.grpc.server -
-
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 TypeArg<HttpServerRequest>HttpServerRequest. __TYPE_ARGMethods in io.vertx.reactivex.core.http that return HttpServerRequest Modifier and Type Method Description HttpServerRequestHttpServerRequest. body(Handler<AsyncResult<Buffer>> handler)Same asbody(io.vertx.core.Handler<io.vertx.core.AsyncResult<io.vertx.reactivex.core.buffer.Buffer>>)but with anhandlercalled when the operation completesHttpServerRequestHttpServerRequest. 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)static HttpServerRequestHttpServerRequest. newInstance(HttpServerRequest arg)HttpServerRequestHttpServerRequest. pause()HttpServerRequestHttpServerRequest. resume()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.reactivex.core.http that return types with arguments of type HttpServerRequest Modifier and Type Method Description ReadStream<HttpServerRequest>HttpServer. requestStream()Deprecated.Method parameters in io.vertx.reactivex.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. -
Uses of HttpServerRequest in io.vertx.reactivex.ext.web
Methods in io.vertx.reactivex.ext.web that return HttpServerRequest Modifier and Type Method Description HttpServerRequestRoutingContext. request()Methods in io.vertx.reactivex.ext.web with parameters of type HttpServerRequest Modifier and Type Method Description voidRouter. handle(HttpServerRequest event)Something has happened, so handle it. -
Uses of HttpServerRequest in io.vertx.reactivex.ext.web.handler
Method parameters in io.vertx.reactivex.ext.web.handler with type arguments of type HttpServerRequest Modifier and Type Method Description LoggerHandlerLoggerHandler. customFormatter(Function<HttpServerRequest,String> formatter)Deprecated. -
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 voidGrpcServer. handle(HttpServerRequest event)Something has happened, so handle it.
-