Thread interruption from QML
Solved
QML and Qt Quick
-
how can I request Thread interruption from the QML side to a QThread running
quit() does not work for me
terminate() destroys the thread right away which causes some errors in an API I'm using to control some hardware in the thread
I want to properly close and destroy the device I'm using onInterruptionRequested and then kill the thread
I want to do so from the QML side, what options do I have ?