| 242 | } |
| 243 | |
| 244 | void enqueue_part(std::string part) { |
| 245 | if (finished_) { |
| 246 | return; |
| 247 | } |
| 248 | q_.push_back(std::make_shared<std::string>(std::move(part))); |
| 249 | send_next_part(); |
| 250 | } |
| 251 | |
| 252 | void finish() { |
| 253 | if (finished_) { |
no outgoing calls
no test coverage detected