! * \brief Starts the will timer, which will update the will message */
| 956 | * \brief Starts the will timer, which will update the will message |
| 957 | */ |
| 958 | void MQTTClient::startWillTimer() const { |
| 959 | if (m_MQTTWill.willUpdateType == WillUpdateType::TimePeriod) |
| 960 | m_willTimer->start(m_MQTTWill.willTimeInterval); |
| 961 | } |
| 962 | |
| 963 | /*! |
| 964 | * \brief Stops the will timer |
no test coverage detected