| 59 | } |
| 60 | |
| 61 | ExecutorGroup::IpAddrs ExecutorGroup::GetAllExecutorIps() const { |
| 62 | IpAddrs ips; |
| 63 | ips.reserve(NumHosts()); |
| 64 | for (auto& it: executor_map_) ips.push_back(it.first); |
| 65 | return ips; |
| 66 | } |
| 67 | |
| 68 | ExecutorGroup::Executors ExecutorGroup::GetAllExecutorDescriptors() const { |
| 69 | Executors executors; |
no test coverage detected