| 138 | DelayedAction(T promise) : promise_(std::move(promise)) { |
| 139 | } |
| 140 | void set_timer(td::Timestamp t) { |
| 141 | alarm_timestamp() = t; |
| 142 | } |
| 143 | void alarm() override { |
| 144 | promise_(); |
| 145 | stop(); |
nothing calls this directly
no outgoing calls
no test coverage detected