Uses of Class
io.vertx.rxjava.ext.web.Router
-
-
Uses of Router in io.vertx.rxjava.ext.shell.term
Methods in io.vertx.rxjava.ext.shell.term with parameters of type Router Modifier and Type Method Description static TermServer
TermServer. createHttpTermServer(Vertx vertx, Router router)
Create a term server for the HTTP protocol, using an existing router.static TermServer
TermServer. createHttpTermServer(Vertx vertx, Router router, io.vertx.ext.shell.term.HttpTermOptions options)
Create a term server for the HTTP protocol, using an existing router. -
Uses of Router in io.vertx.rxjava.ext.web
Fields in io.vertx.rxjava.ext.web with type parameters of type Router Modifier and Type Field Description static TypeArg<Router>
Router. __TYPE_ARG
Methods in io.vertx.rxjava.ext.web that return Router Modifier and Type Method Description Router
Router. allowForward(io.vertx.ext.web.AllowForwardHeaders allowForwardHeaders)
Set whether the router should parse "forwarded"-type headersRouter
Router. clear()
Remove all the routes from this routerRouter
Router. errorHandler(int statusCode, io.vertx.core.Handler<RoutingContext> errorHandler)
Specify an handler to handle an error for a particular status code.Router
Router. modifiedHandler(io.vertx.core.Handler<Router> handler)
When a Router routes are changed this handler is notified.static Router
Router. newInstance(io.vertx.ext.web.Router arg)
Router
Router. putMetadata(String key, Object value)
Put metadata to this router.static Router
Router. router(Vertx vertx)
Create a routerMethods in io.vertx.rxjava.ext.web with parameters of type Router Modifier and Type Method Description Route
Router. mountSubRouter(String mountPoint, Router subRouter)
Deprecated.Route
Route. subRouter(Router subRouter)
Use a (sub)Router
as a handler.Method parameters in io.vertx.rxjava.ext.web with type arguments of type Router Modifier and Type Method Description Router
Router. modifiedHandler(io.vertx.core.Handler<Router> handler)
When a Router routes are changed this handler is notified. -
Uses of Router in io.vertx.rxjava.ext.web.api.contract
Methods in io.vertx.rxjava.ext.web.api.contract that return Router Modifier and Type Method Description Router
RouterFactory. getRouter()
Deprecated. -
Uses of Router in io.vertx.rxjava.ext.web.api.contract.openapi3
Methods in io.vertx.rxjava.ext.web.api.contract.openapi3 that return Router Modifier and Type Method Description Router
OpenAPI3RouterFactory. getRouter()
Deprecated. -
Uses of Router in io.vertx.rxjava.ext.web.handler.graphql
Methods in io.vertx.rxjava.ext.web.handler.graphql that return Router Modifier and Type Method Description Router
GraphiQLHandler. router()
Creates a router configured to serve GraphiQL resources. -
Uses of Router in io.vertx.rxjava.ext.web.handler.sockjs
Methods in io.vertx.rxjava.ext.web.handler.sockjs that return Router Modifier and Type Method Description Router
SockJSHandler. bridge(io.vertx.ext.web.handler.sockjs.SockJSBridgeOptions bridgeOptions)
Bridge the SockJS handler to the Vert.x event bus.Router
SockJSHandler. bridge(io.vertx.ext.web.handler.sockjs.SockJSBridgeOptions bridgeOptions, io.vertx.core.Handler<BridgeEvent> bridgeEventHandler)
LikeSockJSHandler.bridge(io.vertx.ext.web.handler.sockjs.SockJSBridgeOptions)
but specifying a handler that will receive bridge events.Router
SockJSHandler. bridge(AuthorizationProvider authorizationProvider, io.vertx.ext.web.handler.sockjs.SockJSBridgeOptions bridgeOptions, io.vertx.core.Handler<BridgeEvent> bridgeEventHandler)
LikeSockJSHandler.bridge(io.vertx.ext.web.handler.sockjs.SockJSBridgeOptions)
but specifying a handler that will receive bridge events.Router
SockJSHandler. socketHandler(io.vertx.core.Handler<SockJSSocket> handler)
Set a SockJS socket handler.
-