| 337 | } |
| 338 | |
| 339 | bool TimerService::hasTopicChanged(const String& topic) |
| 340 | { |
| 341 | MutexGuard<Mutex> guard(m_mutex); |
| 342 | bool hasChanged = m_hasSettingsChanged; |
| 343 | |
| 344 | m_hasSettingsChanged = false; |
| 345 | |
| 346 | return hasChanged; |
| 347 | } |
| 348 | |
| 349 | bool TimerService::setTopic(const String& topic, const JsonObjectConst& jsonValue) |
| 350 | { |
no outgoing calls
no test coverage detected