| 208 | } |
| 209 | |
| 210 | void AddCancel(const TGUID& guid) override { |
| 211 | UpdateInFly(); |
| 212 | TInFly::iterator it = InFly_.find(guid); |
| 213 | |
| 214 | if (it != InFly_.end() && it->second->SetNotified()) { |
| 215 | it->second->NotifyError("Canceled (before ack)"); |
| 216 | } |
| 217 | } |
| 218 | |
| 219 | void AddRequestAck(const TGUID& guid) override { |
| 220 | UpdateInFly(); |
nothing calls this directly
no test coverage detected