Start starts handling connections from other rings in the cluster as well as clients.
()
| 113 | // Start starts handling connections from other rings in the cluster as well as |
| 114 | // clients. |
| 115 | func (n *Node) Start() { |
| 116 | go n.serfEventHandler() |
| 117 | go n.listen() |
| 118 | } |
| 119 | |
| 120 | // configValidator ensures that the configuration is valid and returns an error |
| 121 | // if it is not. |
no test coverage detected