| 317 | } |
| 318 | |
| 319 | bool MessageSendedCompletely() const noexcept override { |
| 320 | if (TSimpleHandle::MessageSendedCompletely()) { |
| 321 | return true; |
| 322 | } |
| 323 | |
| 324 | THttpRequestRef req(GetRequest()); |
| 325 | if (!!req && req->RequestSendedCompletely()) { |
| 326 | const_cast<THandle*>(this)->SetSendComplete(); |
| 327 | } |
| 328 | |
| 329 | return TSimpleHandle::MessageSendedCompletely(); |
| 330 | } |
| 331 | |
| 332 | void Cancel() noexcept override { |
| 333 | if (TSimpleHandle::Canceled()) { |
nothing calls this directly
no test coverage detected