| 206 | } |
| 207 | |
| 208 | td::actor::Task<Action> task_loop_once() override { |
| 209 | co_await do_loop(); |
| 210 | co_return state_ == State::Done ? Action::Finish : Action::KeepRunning; |
| 211 | } |
| 212 | |
| 213 | td::actor::Task<Answer> finish(td::Status status) override { |
| 214 | LOG(INFO) << "Finish: status=" << status; |
nothing calls this directly
no outgoing calls
no test coverage detected