| 168 | } |
| 169 | |
| 170 | void WorkerRunningRequest::process_request_response(td::int32 status_code, |
| 171 | std::vector<std::pair<std::string, std::string>> headers, |
| 172 | std::string payload_part, bool payload_is_completed) { |
| 173 | send_answer(status_code, std::move(headers), std::move(payload_part), payload_is_completed); |
| 174 | } |
| 175 | |
| 176 | void WorkerRunningRequest::send_error(td::Status error) { |
| 177 | if (completed_) { |
nothing calls this directly
no outgoing calls
no test coverage detected