Uses of Class
io.vertx.mutiny.ext.web.RoutingContext
-
Packages that use RoutingContext Package Description io.vertx.mutiny.ext.web io.vertx.mutiny.ext.web.handler io.vertx.mutiny.ext.web.handler.sockjs -
-
Uses of RoutingContext in io.vertx.mutiny.ext.web
Fields in io.vertx.mutiny.ext.web with type parameters of type RoutingContext Modifier and Type Field Description static io.smallrye.mutiny.vertx.TypeArg<RoutingContext>RoutingContext. __TYPE_ARGMethods in io.vertx.mutiny.ext.web that return RoutingContext Modifier and Type Method Description RoutingContextRoutingContext. addCookie(Cookie cookie)Deprecated.UseHttpServerResponse#addCookie(Cookie)Add a cookie.RoutingContextRoutingContext. attachment(String filename)RoutingContextRoutingContext. endAndForget()Variant ofend(java.lang.String)that ignores the result of the operation.RoutingContextRoutingContext. endAndForget(Buffer buffer)Variant ofend(io.vertx.mutiny.core.buffer.Buffer)that ignores the result of the operation.RoutingContextRoutingContext. endAndForget(String chunk)Variant ofend(String)that ignores the result of the operation.RoutingContextRoutingContext. etag(String etag)RoutingContextRoutingContext. jsonAndForget(Object json)Variant ofjson(Object)that ignores the result of the operation.RoutingContextRoutingContext. lastModified(String instant)RoutingContextRoutingContext. lastModified(Instant instant)static RoutingContextRoutingContext. newInstance(io.vertx.ext.web.RoutingContext arg)RoutingContextRoutingContext. put(String key, Object obj)RoutingContextRoutingContext. redirectAndForget(String url)Variant ofredirect(String)that ignores the result of the operation.Methods in io.vertx.mutiny.ext.web with parameters of type RoutingContext Modifier and Type Method Description voidRouter. handleContext(RoutingContext context)voidRouter. handleFailure(RoutingContext context)Method parameters in io.vertx.mutiny.ext.web with type arguments of type RoutingContext Modifier and Type Method Description RouteRoute. blockingHandler(io.vertx.core.Handler<RoutingContext> requestHandler, boolean ordered)RouteRoute. blockingHandler(Consumer<RoutingContext> requestHandler)RouterRouter. errorHandler(int statusCode, Consumer<RoutingContext> errorHandler)RouteRoute. failureHandler(Consumer<RoutingContext> failureHandler)RouteRoute. handler(Consumer<RoutingContext> requestHandler)<T> RouteRoute. respond(Function<RoutingContext,io.smallrye.mutiny.Uni<T>> function) -
Uses of RoutingContext in io.vertx.mutiny.ext.web.handler
Methods in io.vertx.mutiny.ext.web.handler with parameters of type RoutingContext Modifier and Type Method Description voidAPIKeyHandler. 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)voidJWTAuthHandler. accept(RoutingContext item)voidLoggerHandler. accept(RoutingContext item)voidMethodOverrideHandler. accept(RoutingContext item)voidMultiTenantHandler. accept(RoutingContext item)voidOAuth2AuthHandler. accept(RoutingContext item)voidOtpAuthHandler. accept(RoutingContext item)voidRedirectAuthHandler. accept(RoutingContext item)voidResponseContentTypeHandler. accept(RoutingContext item)voidResponseTimeHandler. 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.VoidSessionHandler. flushAndAwait(RoutingContext ctx)Blocking variant ofSessionHandler.flush(io.vertx.mutiny.ext.web.RoutingContext).VoidSessionHandler. flushAndAwait(RoutingContext ctx, boolean ignoreStatus)Blocking variant ofSessionHandler.flush(io.vertx.mutiny.ext.web.RoutingContext,boolean).SessionHandlerSessionHandler. flushAndForget(RoutingContext ctx)Variant ofSessionHandler.flush(io.vertx.mutiny.ext.web.RoutingContext)that ignores the result of the operation.SessionHandlerSessionHandler. flushAndForget(RoutingContext ctx, boolean ignoreStatus)Variant ofSessionHandler.flush(io.vertx.mutiny.ext.web.RoutingContext,boolean)that ignores the result of the operation.StringLoggerFormatter. 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)voidJWTAuthHandler. handle(RoutingContext arg0)voidLoggerHandler. handle(RoutingContext arg0)voidMethodOverrideHandler. handle(RoutingContext arg0)voidMultiTenantHandler. handle(RoutingContext arg0)voidOAuth2AuthHandler. handle(RoutingContext arg0)voidOtpAuthHandler. handle(RoutingContext arg0)voidRedirectAuthHandler. handle(RoutingContext arg0)voidResponseContentTypeHandler. handle(RoutingContext arg0)voidResponseTimeHandler. 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)SessionSessionHandler. newSession(RoutingContext context)io.smallrye.mutiny.Uni<Void>SessionHandler. setUser(RoutingContext context, User user)Set the user for the sessionVoidSessionHandler. setUserAndAwait(RoutingContext context, User user)SessionHandlerSessionHandler. 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 RoutingContext Modifier and Type Method Description MultiTenantHandlerMultiTenantHandler. addDefaultHandler(Consumer<RoutingContext> handler)MultiTenantHandlerMultiTenantHandler. addTenantHandler(String tenant, Consumer<RoutingContext> handler)SimpleAuthenticationHandlerSimpleAuthenticationHandler. 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.sockjs
Methods in io.vertx.mutiny.ext.web.handler.sockjs that return RoutingContext Modifier and Type Method Description RoutingContextSockJSSocket. routingContext()Methods in io.vertx.mutiny.ext.web.handler.sockjs with parameters of type RoutingContext Modifier and Type Method Description voidSockJSHandler. accept(RoutingContext item)voidSockJSHandler. handle(RoutingContext routingContext)Deprecated.mount the router as a sub-router instead.
-