| 149 | |
| 150 | template <> |
| 151 | void TimeSeriesRecorder<PackagePtr>::NotifyData(Update update, DataRetrievalFunctor retrieve_data) |
| 152 | { |
| 153 | if (shouldRecordValue(update)) { |
| 154 | m_data.Push(DataEntry(update, retrieve_data(m_data_id))); |
| 155 | didRecordValue(); |
| 156 | } |
| 157 | } |
| 158 | |
| 159 | |
| 160 | template <> |
no test coverage detected