Uses of Class
io.vertx.mutiny.core.http.HttpServerRequest
-
Packages that use HttpServerRequest Package Description io.vertx.mutiny.core.http io.vertx.mutiny.ext.web io.vertx.mutiny.ext.web.handler io.vertx.mutiny.httpproxy -
-
Uses of HttpServerRequest in io.vertx.mutiny.core.http
Fields in io.vertx.mutiny.core.http with type parameters of type HttpServerRequest Modifier and Type Field Description static TypeArg<HttpServerRequest>
HttpServerRequest. __TYPE_ARG
Methods in io.vertx.mutiny.core.http that return HttpServerRequest Modifier and Type Method Description HttpServerRequest
HttpServerRequest. bodyHandler(Consumer<Buffer> bodyHandler)
HttpServerRequest
HttpServerRequest. customFrameHandler(Consumer<HttpFrame> handler)
HttpServerRequest
HttpServerRequest. endHandler(Runnable endHandler)
HttpServerRequest
HttpServerRequest. exceptionHandler(Consumer<Throwable> handler)
HttpServerRequest
HttpServerRequest. fetch(long amount)
HttpServerRequest
HttpServerRequest. handler(Consumer<Buffer> handler)
static HttpServerRequest
HttpServerRequest. newInstance(io.vertx.core.http.HttpServerRequest arg)
HttpServerRequest
HttpServerRequest. pause()
HttpServerRequest
HttpServerRequest. resume()
HttpServerRequest
HttpServerRequest. routed(String route)
HttpServerRequest
HttpServerRequest. setExpectMultipart(boolean expect)
HttpServerRequest
HttpServerRequest. setParamsCharset(String charset)
HttpServerRequest
HttpServerRequest. streamPriorityHandler(Consumer<io.vertx.core.http.StreamPriority> handler)
HttpServerRequest
HttpServerRequest. uploadHandler(Consumer<HttpServerFileUpload> uploadHandler)
Methods in io.vertx.mutiny.core.http that return types with arguments of type HttpServerRequest Modifier and Type Method Description ReadStream<HttpServerRequest>
HttpServer. requestStream()
Deprecated.instead use#requestHandler(Handler)
Method parameters in io.vertx.mutiny.core.http with type arguments of type HttpServerRequest Modifier and Type Method Description HttpServer
HttpServer. invalidRequestHandler(Consumer<HttpServerRequest> handler)
HttpServer
HttpServer. requestHandler(Consumer<HttpServerRequest> handler)
-
Uses of HttpServerRequest in io.vertx.mutiny.ext.web
Methods in io.vertx.mutiny.ext.web that return HttpServerRequest Modifier and Type Method Description HttpServerRequest
RoutingContext. request()
Methods in io.vertx.mutiny.ext.web with parameters of type HttpServerRequest Modifier and Type Method Description void
Router. accept(HttpServerRequest item)
void
Router. handle(HttpServerRequest arg0)
-
Uses of HttpServerRequest in io.vertx.mutiny.ext.web.handler
Method parameters in io.vertx.mutiny.ext.web.handler with type arguments of type HttpServerRequest Modifier and Type Method Description LoggerHandler
LoggerHandler. customFormatter(Function<HttpServerRequest,String> formatter)
Deprecated.Superseded byLoggerHandler.customFormatter(LoggerFormatter)
-
Uses of HttpServerRequest in io.vertx.mutiny.httpproxy
Methods in io.vertx.mutiny.httpproxy that return HttpServerRequest Modifier and Type Method Description HttpServerRequest
ProxyRequest. proxiedRequest()
Methods in io.vertx.mutiny.httpproxy with parameters of type HttpServerRequest Modifier and Type Method Description void
HttpProxy. accept(HttpServerRequest item)
void
HttpProxy. handle(HttpServerRequest request)
static ProxyRequest
ProxyRequest. reverseProxy(HttpServerRequest proxiedRequest)
Method parameters in io.vertx.mutiny.httpproxy with type arguments of type HttpServerRequest Modifier and Type Method Description HttpProxy
HttpProxy. originSelector(Function<HttpServerRequest,io.smallrye.mutiny.Uni<SocketAddress>> selector)
-