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_ARG
Methods in io.vertx.reactivex.core.http that return HttpServerRequest Modifier and Type Method Description HttpServerRequest
HttpServerRequest. body(Handler<AsyncResult<Buffer>> handler)
Same asbody(io.vertx.core.Handler<io.vertx.core.AsyncResult<io.vertx.reactivex.core.buffer.Buffer>>)
but with anhandler
called when the operation completesHttpServerRequest
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.Methods in io.vertx.reactivex.core.http that return types with arguments of type HttpServerRequest Modifier and Type Method Description ReadStream<HttpServerRequest>
HttpServer. requestStream()
Return the request stream for the server.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.ext.web.handler
Method parameters in io.vertx.reactivex.ext.web.handler with type arguments of type HttpServerRequest Modifier and Type Method Description LoggerHandler
LoggerHandler. 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 void
GrpcServer. handle(HttpServerRequest event)
Something has happened, so handle it.
-