! * \brief Modifies the update interval of the live data source * \param updateInterval */
| 467 | * \param updateInterval |
| 468 | */ |
| 469 | void LiveDataDock::updateIntervalChanged(int updateInterval) { |
| 470 | if (m_liveDataSource) |
| 471 | m_liveDataSource->setUpdateInterval(updateInterval); |
| 472 | #ifdef HAVE_MQTT |
| 473 | else if (m_mqttClient) |
| 474 | m_mqttClient->setUpdateInterval(updateInterval); |
| 475 | #endif |
| 476 | } |
| 477 | |
| 478 | /*! |
| 479 | * \brief Modifies the number of samples to keep in each of the live data source |
nothing calls this directly
no test coverage detected