RoundRobinLoadBalancer 轮询负载均衡器
| 6 | |
| 7 | // RoundRobinLoadBalancer 轮询负载均衡器 |
| 8 | type RoundRobinLoadBalancer struct { |
| 9 | *BaseLoadBalancer |
| 10 | currentIndex int64 |
| 11 | weighted bool |
| 12 | } |
| 13 | |
| 14 | // NewRoundRobinLoadBalancer 创建轮询负载均衡器 |
| 15 | func NewRoundRobinLoadBalancer(weighted bool) *RoundRobinLoadBalancer { |
nothing calls this directly
no outgoing calls
no test coverage detected