(target *ProxyTarget)
| 99 | // ProxyBalancer defines an interface to implement a load balancing technique. |
| 100 | type ProxyBalancer interface { |
| 101 | AddTarget(target *ProxyTarget) bool |
| 102 | RemoveTarget(targetName string) bool |
| 103 | Next(c *echo.Context) (*ProxyTarget, error) |
| 104 | } |
no outgoing calls