Uses of Class
services.moleculer.web.router.Route
Packages that use Route
-
Uses of Route in services.moleculer.web
Fields in services.moleculer.web declared as RouteModifier and TypeFieldDescriptionprotected RouteApiGateway.lastRouteLast route (for the last middleware)protected Route[]ApiGateway.routesMethods in services.moleculer.web that return RouteModifier and TypeMethodDescriptionApiGateway.addRoute()ApiGateway.addRoute(String path, String serviceList, HttpMiddleware... middlewares) Define a route for a list of Service (eg. in the "service" the service's "action" action will available on "http://host:port/path/service/action").Adds a route to the list of routes.Route[]ApiGateway.getRoutes()Methods in services.moleculer.web with parameters of type RouteModifier and TypeMethodDescriptionAdds a route to the list of routes.protected voidApiGateway.logAlias(StringBuilder msg, Route route, Alias alias) protected voidvoidCallProcessor.onCall(Route route, WebRequest req, WebResponse rsp, io.datatree.Tree data) void -
Uses of Route in services.moleculer.web.router
Fields in services.moleculer.web.router declared as RouteModifier and TypeFieldDescriptionprotected final RouteActionInvoker.routeprotected final RouteMapping.routeMethods in services.moleculer.web.router that return RouteModifier and TypeMethodDescriptionRoute.addToWhiteList(String... whiteListEntries) Route.use(Collection<HttpMiddleware> middlewares) Route.use(HttpMiddleware... middlewares) Constructors in services.moleculer.web.router with parameters of type RouteModifierConstructorDescriptionActionInvoker(String actionName, Pattern pattern, io.datatree.dom.Cache<String, Matcher> cache, IndexedVariable[] variables, services.moleculer.context.CallOptions.Options opts, services.moleculer.service.ServiceInvoker serviceInvoker, AbstractTemplateEngine templateEngine, Route route, CallProcessor beforeCall, CallProcessor afterCall, ExecutorService executor, services.moleculer.eventbus.Eventbus eventbus) Mapping(services.moleculer.ServiceBroker broker, String httpMethod, String pathPattern, String actionName, services.moleculer.context.CallOptions.Options opts, AbstractTemplateEngine templateEngine, Route route, CallProcessor beforeCall, CallProcessor afterCall, ExecutorService executor)