(opt *ClusterOptions)
| 624 | } |
| 625 | |
| 626 | func newClusterNodes(opt *ClusterOptions) *clusterNodes { |
| 627 | return &clusterNodes{ |
| 628 | opt: opt, |
| 629 | addrs: opt.Addrs, |
| 630 | nodes: make(map[string]*clusterNode), |
| 631 | } |
| 632 | } |
| 633 | |
| 634 | func (c *clusterNodes) Close() error { |
| 635 | c.mu.Lock() |
no outgoing calls