- Parameters:
-
| waitTillStarted | True if you want the call to wait until the thread is running before returning |
Call this to start the separate parallel execution of this thread object from its
run(). Remember never to access any data in the
QThread object after calling this method without first synchronising access. Our suggestion is to also subclass
QMutex so then you can simply use lock() and unlock() (preferably via
QMtxHold) around every access.