| 765 | } |
| 766 | |
| 767 | inline void StartRead() { |
| 768 | if (!InAsyncRead_ && !Canceled_) { |
| 769 | InAsyncRead_ = true; |
| 770 | AS_.AsyncPollRead(std::bind(&THttpConn::OnCanRead, THttpConnRef(this), _1, _2), THttp2Options::InputDeadline); |
| 771 | } |
| 772 | } |
| 773 | |
| 774 | //can be called only from asio |
| 775 | void OnReadSome(const TErrorCode& err, size_t bytes, IHandlingContext& ctx) { |
nothing calls this directly
no test coverage detected