Uses of Class
io.vertx.mutiny.ext.web.RoutingContext
Packages that use RoutingContext
Package
Description
-
Uses of RoutingContext in io.vertx.mutiny.circuitbreaker
Methods in io.vertx.mutiny.circuitbreaker with parameters of type RoutingContextModifier and TypeMethodDescriptionvoidHystrixMetricHandler.accept(RoutingContext item) voidHystrixMetricHandler.handle(RoutingContext arg0) -
Uses of RoutingContext in io.vertx.mutiny.ext.healthchecks
Methods in io.vertx.mutiny.ext.healthchecks with parameters of type RoutingContextModifier and TypeMethodDescriptionvoidHealthCheckHandler.accept(RoutingContext item) voidHealthCheckHandler.handle(RoutingContext arg0) -
Uses of RoutingContext in io.vertx.mutiny.ext.web
Fields in io.vertx.mutiny.ext.web with type parameters of type RoutingContextMethods in io.vertx.mutiny.ext.web that return RoutingContextModifier and TypeMethodDescriptionDeprecated.RoutingContext.attachment(String filename) RoutingContext.endAndForget()Variant ofend(java.lang.String)that ignores the result of the operation.RoutingContext.endAndForget(Buffer buffer) Variant ofend(io.vertx.mutiny.core.buffer.Buffer)that ignores the result of the operation.RoutingContext.endAndForget(String chunk) Variant ofend(String)that ignores the result of the operation.RoutingContext.jsonAndForget(Object json) Variant ofjson(Object)that ignores the result of the operation.RoutingContext.lastModified(String instant) RoutingContext.lastModified(Instant instant) static RoutingContextRoutingContext.newInstance(io.vertx.ext.web.RoutingContext arg) RoutingContext.redirectAndForget(String url) Variant ofredirect(String)that ignores the result of the operation.Methods in io.vertx.mutiny.ext.web with parameters of type RoutingContextModifier and TypeMethodDescriptionvoidRouter.handleContext(RoutingContext context) voidRouter.handleFailure(RoutingContext context) Method parameters in io.vertx.mutiny.ext.web with type arguments of type RoutingContextModifier and TypeMethodDescriptionRoute.blockingHandler(io.vertx.core.Handler<RoutingContext> requestHandler, boolean ordered) Route.blockingHandler(Consumer<RoutingContext> requestHandler) Router.errorHandler(int statusCode, Consumer<RoutingContext> errorHandler) Route.failureHandler(Consumer<RoutingContext> failureHandler) Route.handler(Consumer<RoutingContext> requestHandler) <T> RouteRoute.respond(Function<RoutingContext, io.smallrye.mutiny.Uni<T>> function) -
Uses of RoutingContext in io.vertx.mutiny.ext.web.api.contract
Fields in io.vertx.mutiny.ext.web.api.contract with type parameters of type RoutingContextMethods in io.vertx.mutiny.ext.web.api.contract that return types with arguments of type RoutingContextModifier and TypeMethodDescriptionio.vertx.core.Handler<RoutingContext>RouterFactory.getValidationFailureHandler()Deprecated.Router Factory won't manage the validation errors anymore.Methods in io.vertx.mutiny.ext.web.api.contract with parameters of type RoutingContextModifier and TypeMethodDescriptiondefault voidHTTPOperationRequestValidationHandler.accept(RoutingContext item) voidHTTPOperationRequestValidationHandler.handle(RoutingContext arg0) Deprecated.Method parameters in io.vertx.mutiny.ext.web.api.contract with type arguments of type RoutingContextModifier and TypeMethodDescriptionRouterFactory.addGlobalHandler(Consumer<RoutingContext> globalHandler) Deprecated.RouterFactory.addSecurityHandler(String securitySchemaName, Consumer<RoutingContext> handler) Deprecated.RouterFactory.setExtraOperationContextPayloadMapper(Function<RoutingContext, io.vertx.core.json.JsonObject> extraOperationContextPayloadMapper) Deprecated.RouterFactory.setNotImplementedFailureHandler(Consumer<RoutingContext> notImplementedFailureHandler) Deprecated.You must useRouter.errorHandler(int, Handler)with 501 errorRouterFactory.setValidationFailureHandler(Consumer<RoutingContext> validationFailureHandler) Deprecated.Router Factory won't manage the validation errors anymore. -
Uses of RoutingContext in io.vertx.mutiny.ext.web.api.contract.openapi3
Methods in io.vertx.mutiny.ext.web.api.contract.openapi3 that return types with arguments of type RoutingContextModifier and TypeMethodDescriptionio.vertx.core.Handler<RoutingContext>OpenAPI3RouterFactory.getValidationFailureHandler()Deprecated.Router Factory won't manage the validation errors anymore.Methods in io.vertx.mutiny.ext.web.api.contract.openapi3 with parameters of type RoutingContextModifier and TypeMethodDescriptionvoidOpenAPI3RequestValidationHandler.accept(RoutingContext item) voidOpenAPI3RequestValidationHandler.handle(RoutingContext arg0) Deprecated.Method parameters in io.vertx.mutiny.ext.web.api.contract.openapi3 with type arguments of type RoutingContextModifier and TypeMethodDescriptionOpenAPI3RouterFactory.addFailureHandlerByOperationId(String operationId, Consumer<RoutingContext> failureHandler) Deprecated.OpenAPI3RouterFactory.addGlobalHandler(Consumer<RoutingContext> globalHandler) Deprecated.OpenAPI3RouterFactory.addHandlerByOperationId(String operationId, Consumer<RoutingContext> handler) Deprecated.OpenAPI3RouterFactory.addSecurityHandler(String securitySchemaName, Consumer<RoutingContext> handler) Deprecated.OpenAPI3RouterFactory.addSecuritySchemaScopeValidator(String securitySchemaName, String scopeName, Consumer<RoutingContext> handler) Deprecated.OpenAPI3RouterFactory.setExtraOperationContextPayloadMapper(Function<RoutingContext, io.vertx.core.json.JsonObject> extraOperationContextPayloadMapper) Deprecated.OpenAPI3RouterFactory.setNotImplementedFailureHandler(Consumer<RoutingContext> notImplementedFailureHandler) Deprecated.You must useRouter.errorHandler(int, Handler)with 501 errorOpenAPI3RouterFactory.setValidationFailureHandler(Consumer<RoutingContext> validationFailureHandler) Deprecated.Router Factory won't manage the validation errors anymore. -
Uses of RoutingContext in io.vertx.mutiny.ext.web.api.service
Methods in io.vertx.mutiny.ext.web.api.service with parameters of type RoutingContextModifier and TypeMethodDescriptionvoidRouteToEBServiceHandler.accept(RoutingContext item) voidRouteToEBServiceHandler.handle(RoutingContext arg0) Method parameters in io.vertx.mutiny.ext.web.api.service with type arguments of type RoutingContextModifier and TypeMethodDescriptionRouteToEBServiceHandler.extraPayloadMapper(Function<RoutingContext, io.vertx.core.json.JsonObject> extraPayloadMapper) -
Uses of RoutingContext in io.vertx.mutiny.ext.web.api.validation
Methods in io.vertx.mutiny.ext.web.api.validation with parameters of type RoutingContextModifier and TypeMethodDescriptionvoidHTTPRequestValidationHandler.accept(RoutingContext item) default voidValidationHandler.accept(RoutingContext item) voidHTTPRequestValidationHandler.handle(RoutingContext arg0) Deprecated.voidValidationHandler.handle(RoutingContext arg0) Deprecated.voidCustomValidator.validate(RoutingContext routingContext) Deprecated. -
Uses of RoutingContext in io.vertx.mutiny.ext.web.handler
Methods in io.vertx.mutiny.ext.web.handler with parameters of type RoutingContextModifier and TypeMethodDescriptionvoidAPIKeyHandler.accept(RoutingContext item) default voidAuthenticationHandler.accept(RoutingContext item) voidAuthorizationHandler.accept(RoutingContext item) voidBasicAuthHandler.accept(RoutingContext item) voidBodyHandler.accept(RoutingContext item) voidChainAuthHandler.accept(RoutingContext item) voidCorsHandler.accept(RoutingContext item) voidCSPHandler.accept(RoutingContext item) voidCSRFHandler.accept(RoutingContext item) voidDigestAuthHandler.accept(RoutingContext item) voidErrorHandler.accept(RoutingContext item) voidFaviconHandler.accept(RoutingContext item) voidFormLoginHandler.accept(RoutingContext item) voidHSTSHandler.accept(RoutingContext item) default voidInputTrustHandler.accept(RoutingContext item) voidJWTAuthHandler.accept(RoutingContext item) voidLoggerHandler.accept(RoutingContext item) voidMethodOverrideHandler.accept(RoutingContext item) voidMultiTenantHandler.accept(RoutingContext item) voidOAuth2AuthHandler.accept(RoutingContext item) voidOtpAuthHandler.accept(RoutingContext item) default voidPlatformHandler.accept(RoutingContext item) default voidProtocolUpgradeHandler.accept(RoutingContext item) voidRedirectAuthHandler.accept(RoutingContext item) voidResponseContentTypeHandler.accept(RoutingContext item) voidResponseTimeHandler.accept(RoutingContext item) default voidSecurityPolicyHandler.accept(RoutingContext item) voidSessionHandler.accept(RoutingContext item) voidSimpleAuthenticationHandler.accept(RoutingContext item) voidStaticHandler.accept(RoutingContext item) voidTemplateHandler.accept(RoutingContext item) voidTimeoutHandler.accept(RoutingContext item) voidWebAuthnHandler.accept(RoutingContext item) voidXFrameHandler.accept(RoutingContext item) io.smallrye.mutiny.Uni<Void>SessionHandler.flush(RoutingContext ctx) Flush a context session earlier to the store, this will allow the end user to have full control on the event of a failure at the store level.io.smallrye.mutiny.Uni<Void>SessionHandler.flush(RoutingContext ctx, boolean ignoreStatus) Flush a context session earlier to the store, this will allow the end user to have full control on the event of a failure at the store level.SessionHandler.flushAndAwait(RoutingContext ctx) Blocking variant ofSessionHandler.flush(io.vertx.mutiny.ext.web.RoutingContext).SessionHandler.flushAndAwait(RoutingContext ctx, boolean ignoreStatus) Blocking variant ofSessionHandler.flush(io.vertx.mutiny.ext.web.RoutingContext,boolean).SessionHandler.flushAndForget(RoutingContext ctx) Variant ofSessionHandler.flush(io.vertx.mutiny.ext.web.RoutingContext)that ignores the result of the operation.SessionHandler.flushAndForget(RoutingContext ctx, boolean ignoreStatus) Variant ofSessionHandler.flush(io.vertx.mutiny.ext.web.RoutingContext,boolean)that ignores the result of the operation.LoggerFormatter.format(RoutingContext routingContext, long ms) voidAPIKeyHandler.handle(RoutingContext arg0) voidAuthenticationHandler.handle(RoutingContext arg0) voidAuthorizationHandler.handle(RoutingContext arg0) voidBasicAuthHandler.handle(RoutingContext arg0) voidBodyHandler.handle(RoutingContext arg0) voidChainAuthHandler.handle(RoutingContext arg0) voidCorsHandler.handle(RoutingContext arg0) voidCSPHandler.handle(RoutingContext arg0) voidCSRFHandler.handle(RoutingContext arg0) voidDigestAuthHandler.handle(RoutingContext arg0) voidErrorHandler.handle(RoutingContext arg0) voidFaviconHandler.handle(RoutingContext arg0) voidFormLoginHandler.handle(RoutingContext arg0) voidHSTSHandler.handle(RoutingContext arg0) voidInputTrustHandler.handle(RoutingContext arg0) voidJWTAuthHandler.handle(RoutingContext arg0) voidLoggerHandler.handle(RoutingContext arg0) voidMethodOverrideHandler.handle(RoutingContext arg0) voidMultiTenantHandler.handle(RoutingContext arg0) voidOAuth2AuthHandler.handle(RoutingContext arg0) voidOtpAuthHandler.handle(RoutingContext arg0) voidPlatformHandler.handle(RoutingContext arg0) voidProtocolUpgradeHandler.handle(RoutingContext arg0) voidRedirectAuthHandler.handle(RoutingContext arg0) voidResponseContentTypeHandler.handle(RoutingContext arg0) voidResponseTimeHandler.handle(RoutingContext arg0) voidSecurityPolicyHandler.handle(RoutingContext arg0) voidSessionHandler.handle(RoutingContext arg0) voidSimpleAuthenticationHandler.handle(RoutingContext arg0) voidStaticHandler.handle(RoutingContext arg0) voidTemplateHandler.handle(RoutingContext arg0) voidTimeoutHandler.handle(RoutingContext arg0) voidWebAuthnHandler.handle(RoutingContext arg0) voidXFrameHandler.handle(RoutingContext arg0) SessionHandler.newSession(RoutingContext context) io.smallrye.mutiny.Uni<Void>SessionHandler.setUser(RoutingContext context, User user) Set the user for the sessionSessionHandler.setUserAndAwait(RoutingContext context, User user) SessionHandler.setUserAndForget(RoutingContext context, User user) Variant ofSessionHandler.setUser(io.vertx.mutiny.ext.web.RoutingContext,io.vertx.mutiny.ext.auth.User)that ignores the result of the operation.Method parameters in io.vertx.mutiny.ext.web.handler with type arguments of type RoutingContextModifier and TypeMethodDescriptionMultiTenantHandler.addDefaultHandler(Consumer<RoutingContext> handler) MultiTenantHandler.addTenantHandler(String tenant, Consumer<RoutingContext> handler) SimpleAuthenticationHandler.authenticate(Function<RoutingContext, io.smallrye.mutiny.Uni<User>> authenticationFunction) static MultiTenantHandlerMultiTenantHandler.create(Function<RoutingContext, String> tenantExtractor) static MultiTenantHandlerMultiTenantHandler.create(Function<RoutingContext, String> tenantExtractor, String contextKey) -
Uses of RoutingContext in io.vertx.mutiny.ext.web.handler.graphql
Methods in io.vertx.mutiny.ext.web.handler.graphql that return RoutingContextModifier and TypeMethodDescriptionstatic RoutingContextGraphQLHandler.getRoutingContext(graphql.GraphQLContext graphQlContext) Deprecated.invokeGraphQLContext.get(Object)withRoutingContextclass object instead.Methods in io.vertx.mutiny.ext.web.handler.graphql with parameters of type RoutingContextModifier and TypeMethodDescriptionvoidApolloWSHandler.accept(RoutingContext item) voidGraphiQLHandler.accept(RoutingContext item) voidGraphQLHandler.accept(RoutingContext item) voidApolloWSHandler.handle(RoutingContext arg0) Deprecated.voidGraphiQLHandler.handle(RoutingContext arg0) voidGraphQLHandler.handle(RoutingContext arg0) Method parameters in io.vertx.mutiny.ext.web.handler.graphql with type arguments of type RoutingContextModifier and TypeMethodDescriptionGraphiQLHandlerBuilder.addingHeaders(Function<RoutingContext, MultiMap> factory) GraphQLHandler.beforeExecute(Consumer<ExecutionInputBuilderWithContext<RoutingContext>> config) Deprecated.as of 4.5.1, useGraphQLHandler.builder(GraphQL)insteadGraphQLHandlerBuilder.beforeExecute(Consumer<ExecutionInputBuilderWithContext<RoutingContext>> beforeExecuteHandler) GraphQLHandler.dataLoaderRegistry(Function<RoutingContext, org.dataloader.DataLoaderRegistry> factory) Deprecated.as of 4.2, use#beforeExecute(Handler)insteadGraphiQLHandler.graphiQLRequestHeaders(Function<RoutingContext, MultiMap> factory) Deprecated.as of 4.5.1, useGraphiQLHandler.builder(Vertx)insteadGraphQLHandler.locale(Function<RoutingContext, Locale> factory) Deprecated.as of 4.2, use#beforeExecute(Handler)insteadGraphQLHandler.queryContext(Function<RoutingContext, Object> factory) Deprecated.as of 4.2, use#beforeExecute(Handler)instead -
Uses of RoutingContext in io.vertx.mutiny.ext.web.handler.graphql.ws
Methods in io.vertx.mutiny.ext.web.handler.graphql.ws with parameters of type RoutingContextModifier and TypeMethodDescriptionvoidGraphQLWSHandler.accept(RoutingContext item) voidGraphQLWSHandler.handle(RoutingContext arg0) -
Uses of RoutingContext in io.vertx.mutiny.ext.web.handler.sockjs
Methods in io.vertx.mutiny.ext.web.handler.sockjs that return RoutingContextMethods in io.vertx.mutiny.ext.web.handler.sockjs with parameters of type RoutingContextModifier and TypeMethodDescriptionvoidSockJSHandler.accept(RoutingContext item) voidSockJSHandler.handle(RoutingContext routingContext) Deprecated.mount the router as a sub-router instead. -
Uses of RoutingContext in io.vertx.mutiny.ext.web.openapi
Method parameters in io.vertx.mutiny.ext.web.openapi with type arguments of type RoutingContextModifier and TypeMethodDescriptionOperation.failureHandler(Consumer<RoutingContext> handler) Operation.handler(Consumer<RoutingContext> handler) RouterBuilder.rootHandler(Consumer<RoutingContext> rootHandler) RouterBuilder.serviceExtraPayloadMapper(Function<RoutingContext, io.vertx.core.json.JsonObject> serviceExtraPayloadMapper) -
Uses of RoutingContext in io.vertx.mutiny.ext.web.proxy.handler
Methods in io.vertx.mutiny.ext.web.proxy.handler with parameters of type RoutingContextModifier and TypeMethodDescriptionvoidProxyHandler.accept(RoutingContext item) voidProxyHandler.handle(RoutingContext arg0) -
Uses of RoutingContext in io.vertx.mutiny.ext.web.validation
Methods in io.vertx.mutiny.ext.web.validation with parameters of type RoutingContextModifier and TypeMethodDescriptionvoidValidationHandler.accept(RoutingContext item) RequestPredicate.apply(RoutingContext in) voidValidationHandler.handle(RoutingContext arg0) -
Uses of RoutingContext in io.vertx.mutiny.micrometer
Methods in io.vertx.mutiny.micrometer that return types with arguments of type RoutingContextModifier and TypeMethodDescriptionstatic io.vertx.core.Handler<RoutingContext>PrometheusScrapingHandler.create()static io.vertx.core.Handler<RoutingContext>PrometheusScrapingHandler.create(io.micrometer.prometheus.PrometheusMeterRegistry registry) static io.vertx.core.Handler<RoutingContext>
HttpServerResponse#addCookie(Cookie)Add a cookie.