| 565 | } |
| 566 | |
| 567 | inline void Finish() { |
| 568 | if (Finished_) { |
| 569 | return; |
| 570 | } |
| 571 | |
| 572 | TFinish f; |
| 573 | Streams_.ForEach(f); |
| 574 | Slave_->Finish(); // see SEARCH-1030 |
| 575 | |
| 576 | Finished_ = true; |
| 577 | } |
| 578 | |
| 579 | inline const THttpHeaders& SentHeaders() const noexcept { |
| 580 | return Headers_; |
no test coverage detected