| 201 | } |
| 202 | |
| 203 | ScheduledCall TimedExecutor::CallAfter(const Duration& interval, std::function<void ()> fn) |
| 204 | { |
| 205 | return CallAt(std::chrono::steady_clock::now() + interval, fn); |
| 206 | } |
| 207 | |
| 208 | ScheduledCall TimedExecutor::CallEvery(const Duration& interval, std::function<void ()> fn) |
| 209 | { |
no outgoing calls