| 575 | |
| 576 | protected: |
| 577 | void CancelStaleRequests(TInFly& infly) { |
| 578 | TRequestDescrRef d; |
| 579 | |
| 580 | while (ScheduledReqs_.Dequeue(&d)) { |
| 581 | infly.Insert(d); |
| 582 | } |
| 583 | |
| 584 | infly.EraseStale(); |
| 585 | } |
| 586 | |
| 587 | IOnRequest* CB_; |
| 588 | NNeh::TAutoLockFreeQueue<TPacket> ToSend_; |
nothing calls this directly
no test coverage detected