| 652 | } |
| 653 | |
| 654 | void TopicHandlerService::stopAllHandlers() |
| 655 | { |
| 656 | uint8_t idx = 0U; |
| 657 | uint8_t count = 0U; |
| 658 | ITopicHandler** topicHandlerList = TopicHandlers::getList(count); |
| 659 | |
| 660 | while (count > idx) |
| 661 | { |
| 662 | ITopicHandler* handler = topicHandlerList[idx]; |
| 663 | |
| 664 | if (nullptr != handler) |
| 665 | { |
| 666 | handler->stop(); |
| 667 | } |
| 668 | |
| 669 | ++idx; |
| 670 | } |
| 671 | } |
| 672 | |
| 673 | void TopicHandlerService::processAllHandlers() |
| 674 | { |