| 1116 | return nullptr; |
| 1117 | } |
| 1118 | ~TUdpHttp() override { |
| 1119 | if (std::uncaught_exceptions()) { |
| 1120 | TUdpHttp::StopNoWait(); |
| 1121 | AtomicSwap(&AbortTransactions, 1); |
| 1122 | } |
| 1123 | |
| 1124 | if (UdpHttpThread.Running()) { |
| 1125 | AtomicSwap(&KeepRunning, 0); |
| 1126 | UdpHttpThread.Join(); |
| 1127 | } |
| 1128 | for (TIntrusivePtr<TStatsRequest> req; StatsReqList.Dequeue(&req);) { |
| 1129 | req->Complete.Signal(); |
| 1130 | } |
| 1131 | } |
| 1132 | |
| 1133 | public: |
| 1134 | TUdpHttp() |
nothing calls this directly
no test coverage detected