Uses of Class
io.vertx.mutiny.core.http.HttpServerRequest
Packages that use HttpServerRequest
Package
Description
-
Uses of HttpServerRequest in io.vertx.mutiny.core.http
Fields in io.vertx.mutiny.core.http with type parameters of type HttpServerRequestModifier and TypeFieldDescriptionstatic final TypeArg<HttpServerRequest>HttpServerRequest.__TYPE_ARGMethods in io.vertx.mutiny.core.http that return HttpServerRequestModifier and TypeMethodDescriptionHttpServerRequest.bodyHandler(Consumer<Buffer> bodyHandler) HttpServerRequest.customFrameHandler(Consumer<HttpFrame> handler) HttpServerRequest.endHandler(Runnable endHandler) HttpServerRequest.exceptionHandler(Consumer<Throwable> handler) HttpServerRequest.fetch(long amount) static HttpServerRequestHttpServerRequest.newInstance(io.vertx.core.http.HttpServerRequest arg) HttpServerRequest.pause()HttpServerRequest.resume()HttpServerRequest.setExpectMultipart(boolean expect) HttpServerRequest.setParamsCharset(String charset) HttpServerRequest.streamPriorityHandler(Consumer<io.vertx.core.http.StreamPriority> handler) HttpServerRequest.uploadHandler(Consumer<HttpServerFileUpload> uploadHandler) Methods in io.vertx.mutiny.core.http that return types with arguments of type HttpServerRequestMethod parameters in io.vertx.mutiny.core.http with type arguments of type HttpServerRequestModifier and TypeMethodDescriptionHttpServer.invalidRequestHandler(Consumer<HttpServerRequest> handler) HttpServer.requestHandler(Consumer<HttpServerRequest> handler) -
Uses of HttpServerRequest in io.vertx.mutiny.ext.web
Methods in io.vertx.mutiny.ext.web that return HttpServerRequestMethods in io.vertx.mutiny.ext.web with parameters of type HttpServerRequestModifier and TypeMethodDescriptionvoidRouter.accept(HttpServerRequest item) voidRouter.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 HttpServerRequestModifier and TypeMethodDescriptionLoggerHandler.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 HttpServerRequestMethods in io.vertx.mutiny.httpproxy with parameters of type HttpServerRequestModifier and TypeMethodDescriptionvoidHttpProxy.accept(HttpServerRequest item) voidHttpProxy.handle(HttpServerRequest request) static ProxyRequestProxyRequest.reverseProxy(HttpServerRequest proxiedRequest) Method parameters in io.vertx.mutiny.httpproxy with type arguments of type HttpServerRequestModifier and TypeMethodDescriptionHttpProxy.originSelector(Function<HttpServerRequest, io.smallrye.mutiny.Uni<SocketAddress>> selector) Deprecated.useHttpProxy.origin(OriginRequestProvider)instead -
Uses of HttpServerRequest in io.vertx.mutiny.openapi.validation
Methods in io.vertx.mutiny.openapi.validation with parameters of type HttpServerRequestModifier and TypeMethodDescriptionstatic io.smallrye.mutiny.Uni<ValidatableRequest>ValidatableRequest.of(HttpServerRequest request, Operation operation) Creates a newValidatableRequestobject based on the passed and .static ValidatableRequestValidatableRequest.ofAndAwait(HttpServerRequest request, Operation operation) static voidValidatableRequest.ofAndForget(HttpServerRequest request, Operation operation) Variant ofValidatableRequest.of(io.vertx.mutiny.core.http.HttpServerRequest,io.vertx.mutiny.openapi.contract.Operation)that ignores the result of the operation.io.smallrye.mutiny.Uni<ValidatedRequest>RequestValidator.validate(HttpServerRequest request) LikeRequestValidator.validate(io.vertx.mutiny.core.http.HttpServerRequest), but the operationId andValidatableRequestare determined from the passed request.io.smallrye.mutiny.Uni<ValidatedRequest>RequestValidator.validate(HttpServerRequest request, String operationId) LikeRequestValidator.validate(io.vertx.mutiny.core.http.HttpServerRequest), butValidatableRequestare directly extracted from the passed request.RequestValidator.validateAndAwait(HttpServerRequest request) Blocking variant ofRequestValidator.validate(io.vertx.mutiny.core.http.HttpServerRequest).RequestValidator.validateAndAwait(HttpServerRequest request, String operationId) Blocking variant ofRequestValidator.validate(io.vertx.mutiny.core.http.HttpServerRequest,String).voidRequestValidator.validateAndForget(HttpServerRequest request) Variant ofRequestValidator.validate(io.vertx.mutiny.core.http.HttpServerRequest)that ignores the result of the operation.voidRequestValidator.validateAndForget(HttpServerRequest request, String operationId) Variant ofRequestValidator.validate(io.vertx.mutiny.core.http.HttpServerRequest,String)that ignores the result of the operation.
#requestHandler(Handler)