Register registers a stub balancer builder which will call the provided functions. The name used should be unique.
(name string, bf BalancerFuncs)
| 112 | // Register registers a stub balancer builder which will call the provided |
| 113 | // functions. The name used should be unique. |
| 114 | func Register(name string, bf BalancerFuncs) { |
| 115 | balancer.Register(bb{name: name, bf: bf}) |
| 116 | } |