* Find controllerservice node will search child groups until the nodeId is found. * @param node node identifier * @return controller service node, if it exists. */
| 282 | * @return controller service node, if it exists. |
| 283 | */ |
| 284 | std::shared_ptr<core::controller::ControllerServiceNode> ProcessGroup::findControllerService(const std::string &nodeId) { |
| 285 | return controller_service_map_.getControllerServiceNode(nodeId); |
| 286 | } |
| 287 | |
| 288 | void ProcessGroup::getAllProcessors(std::vector<std::shared_ptr<Processor>> &processor_vec) { |
| 289 | std::lock_guard<std::recursive_mutex> lock(mutex_); |