MCPcopy Create free account
hub / github.com/BlueAndi/Pixelix / startAllHandlers

Method startAllHandlers

lib/TopicHandlerService/src/TopicHandlerService.cpp:635–652  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

633}
634
635void 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
654void TopicHandlerService::stopAllHandlers()
655{

Callers

nothing calls this directly

Calls 1

startMethod · 0.45

Tested by

no test coverage detected