| 232 | |
| 233 | struct TClientThread { |
| 234 | TClientThread(int physicalCpu) |
| 235 | : EH_(new TEventsHandler()) |
| 236 | , R_(CreateHttpUdpRequester(0, IEventsCollectorRef(EH_.Get()), physicalCpu)) |
| 237 | { |
| 238 | R_->EnableReportRequestAck(); |
| 239 | } |
| 240 | |
| 241 | ~TClientThread() { |
| 242 | R_->StopNoWait(); |
nothing calls this directly
no test coverage detected