| 109 | } |
| 110 | |
| 111 | td::actor::Task<Action> task_loop_once() override { |
| 112 | co_await do_loop(); |
| 113 | co_return state_ == State::Done ? Action::Finish : Action::KeepRunning; |
| 114 | } |
| 115 | |
| 116 | td::actor::Task<td::SocketPipe> finish(td::Status status) override { |
| 117 | co_await std::move(status); |
nothing calls this directly
no outgoing calls
no test coverage detected