* @brief Sets the broker clean-session flag. */
| 1451 | * @brief Sets the broker clean-session flag. |
| 1452 | */ |
| 1453 | void MQTT::Publisher::setCleanSession(const bool cleanSession) |
| 1454 | { |
| 1455 | if (m_cleanSession == cleanSession) |
| 1456 | return; |
| 1457 | |
| 1458 | m_cleanSession = cleanSession; |
| 1459 | markConfigChanged(); |
| 1460 | } |
| 1461 | |
| 1462 | /** |
| 1463 | * @brief Toggles publishing of notifications to MQTT. |
no outgoing calls
no test coverage detected