| 28 | |
| 29 | |
| 30 | LatencyRecorder::LatencyRecorder(std::int64_t sampleSize) |
| 31 | : m_accumulator(boost::accumulators::tag::tail< boost::accumulators::right >::cache_size = sampleSize) |
| 32 | { |
| 33 | } |
| 34 | |
| 35 | void LatencyRecorder::record(std::int64_t value) |
| 36 | { |
nothing calls this directly
no outgoing calls
no test coverage detected