Uses of Class
io.vertx.mutiny.ext.web.Router
Packages that use Router
Package
Description
-
Uses of Router in io.vertx.mutiny.ext.web
Fields in io.vertx.mutiny.ext.web with type parameters of type RouterMethods in io.vertx.mutiny.ext.web that return RouterModifier and TypeMethodDescriptionRouter.allowForward(io.vertx.ext.web.AllowForwardHeaders allowForwardHeaders) Set whether the router should parse "forwarded"-type headersRouter.clear()Remove all the routes from this routerRouter.errorHandler(int statusCode, Consumer<RoutingContext> errorHandler) Specify an handler to handle an error for a particular status code.Route.getSubRouter()Router.modifiedHandler(Consumer<Router> handler) When a Router routes are changed this handler is notified.static RouterRouter.newInstance(io.vertx.ext.web.Router delegate) Creates a new instance of theRouter.Router.putMetadata(String key, Object value) Put metadata to this router.static RouterCreate a routerRouter.uncaughtErrorHandler(Consumer<RoutingContext> errorHandler) Specify an handler to handle an error for any status code that doesn't have a specific handler assigned.Methods in io.vertx.mutiny.ext.web with parameters of type RouterMethod parameters in io.vertx.mutiny.ext.web with type arguments of type RouterModifier and TypeMethodDescriptionRouter.modifiedHandler(Consumer<Router> handler) When a Router routes are changed this handler is notified. -
Uses of Router in io.vertx.mutiny.ext.web.handler.graphql
Methods in io.vertx.mutiny.ext.web.handler.graphql that return Router -
Uses of Router in io.vertx.mutiny.ext.web.handler.sockjs
Methods in io.vertx.mutiny.ext.web.handler.sockjs that return RouterModifier and TypeMethodDescriptionSockJSHandler.bridge(io.vertx.ext.web.handler.sockjs.SockJSBridgeOptions bridgeOptions) Bridge the SockJS handler to the Vert.x event bus.SockJSHandler.bridge(io.vertx.ext.web.handler.sockjs.SockJSBridgeOptions bridgeOptions, Consumer<BridgeEvent> bridgeEventHandler) LikeSockJSHandler.bridge(SockJSBridgeOptions)but specifying a handler that will receive bridge events.SockJSHandler.bridge(AuthorizationProvider authorizationProvider, io.vertx.ext.web.handler.sockjs.SockJSBridgeOptions bridgeOptions, Consumer<BridgeEvent> bridgeEventHandler) LikeSockJSHandler.bridge(SockJSBridgeOptions)but specifying a handler that will receive bridge events.SockJSHandler.socketHandler(Consumer<SockJSSocket> handler) Set a SockJS socket handler.