* @brief Returns the number of messages successfully published since the singleton booted. */
| 1094 | * @brief Returns the number of messages successfully published since the singleton booted. |
| 1095 | */ |
| 1096 | quint64 MQTT::Publisher::messagesSent() const noexcept |
| 1097 | { |
| 1098 | return m_messagesSent.load(std::memory_order_relaxed); |
| 1099 | } |
| 1100 | |
| 1101 | /** |
| 1102 | * @brief Returns the canonical starter script shown in the editor when no code is saved. |
no test coverage detected