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

Method stopAllHandlers

lib/TopicHandlerService/src/TopicHandlerService.cpp:654–671  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

652}
653
654void 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
673void TopicHandlerService::processAllHandlers()
674{

Callers

nothing calls this directly

Calls 1

stopMethod · 0.45

Tested by

no test coverage detected