| 13 | class TExecThread: public IThreadFactory::IThreadAble, public IJob { |
| 14 | public: |
| 15 | TExecThread() |
| 16 | : T_(SystemThreadFactory()->Run(this)) |
| 17 | { |
| 18 | } |
| 19 | |
| 20 | ~TExecThread() override { |
| 21 | Enqueue(this); |
nothing calls this directly
no test coverage detected