| 111 | } |
| 112 | |
| 113 | void RpcManager::DoAddChannel(const std::string &host_port) { |
| 114 | for (int tag = 0; tag < num_channels_per_host_; ++tag) { |
| 115 | channels_.emplace_back(CreateChannel(host_port, tag)); |
| 116 | } |
| 117 | } |
| 118 | |
| 119 | void RpcManager::DoRemoveChannel(const std::string &host_port) { |
| 120 | channels_.erase( |
nothing calls this directly
no outgoing calls
no test coverage detected