--- DESTRUCTOR ---
| 55 | |
| 56 | // --- DESTRUCTOR --- |
| 57 | APIWorker::~APIWorker() |
| 58 | { |
| 59 | StopAPI(); |
| 60 | // Set started signal to false and wait for API thread to stop. |
| 61 | started = false; |
| 62 | workThread->wait(); |
| 63 | delete workThread; |
| 64 | } |
| 65 | |
| 66 | // API Core Operations |
| 67 | // Start processing data. |
nothing calls this directly
no outgoing calls
no test coverage detected