| 633 | } |
| 634 | |
| 635 | void TopicHandlerService::startAllHandlers() |
| 636 | { |
| 637 | uint8_t idx = 0U; |
| 638 | uint8_t count = 0U; |
| 639 | ITopicHandler** topicHandlerList = TopicHandlers::getList(count); |
| 640 | |
| 641 | while (count > idx) |
| 642 | { |
| 643 | ITopicHandler* handler = topicHandlerList[idx]; |
| 644 | |
| 645 | if (nullptr != handler) |
| 646 | { |
| 647 | handler->start(); |
| 648 | } |
| 649 | |
| 650 | ++idx; |
| 651 | } |
| 652 | } |
| 653 | |
| 654 | void TopicHandlerService::stopAllHandlers() |
| 655 | { |