| 51 | } |
| 52 | |
| 53 | size_t get_frequency() const noexcept { |
| 54 | return m_frequency.load(std::memory_order_relaxed); |
| 55 | } |
| 56 | |
| 57 | size_t get_due_time() const noexcept { |
| 58 | return m_due_time; // no need to synchronize, const anyway. |
nothing calls this directly
no outgoing calls
no test coverage detected