! * \brief Sets the MQTTClient's update type to updatetype and handles this change * \param updatetype */
| 184 | * \param updatetype |
| 185 | */ |
| 186 | void MQTTClient::setUpdateType(UpdateType updateType) { |
| 187 | if (updateType == UpdateType::NewData) |
| 188 | m_updateTimer->stop(); |
| 189 | |
| 190 | m_updateType = updateType; |
| 191 | } |
| 192 | |
| 193 | /*! |
| 194 | * \brief Returns the MQTTClient's update type |
no outgoing calls