StartAddRoute registers the route with the entrypoint. It is synchronous: it does not return until the route is registered or an error occurs. For HTTP routes, a server for the route's listen address is created and started if needed. For stream routes, ListenAndServe is invoked and the route is adde
(r types.Route)
| 29 | // the excluded pool only. Returns an error on listen/bind failure, stream |
| 30 | // listen failure, or unsupported route type. |
| 31 | StartAddRoute(r types.Route) error |
| 32 | IterRoutes(yield func(r types.Route) bool) |
| 33 | NumRoutes() int |
| 34 | RoutesByProvider() map[string][]types.Route |
no outgoing calls