* Time to wait before re-running this task if necessary * @return milliseconds since epoch after which we are eligible to re-run this task. */
| 154 | * @return milliseconds since epoch after which we are eligible to re-run this task. |
| 155 | */ |
| 156 | std::chrono::milliseconds wait_time() override { |
| 157 | return current_wait_.load(); |
| 158 | } |
| 159 | |
| 160 | private: |
| 161 | std::atomic<std::chrono::milliseconds> current_wait_ {std::chrono::milliseconds(0)}; |
no test coverage detected