If I make a QThread and call one of its slots from another thread, will it be called in the context of the thread of the QThread object, or from the context of the thread which made the call?
|
feedback
|
|
If you execute the slot by emitting a signal, then it depends on the type of signal-to-slot connection you have. A slot connected to a signal via a direct connection would execute in the emitter's thread. A slot connected via a queued connection would execute in the receiver's thread. Please see here: http://doc.qt.nokia.com/4.7/threads-qobject.html If the slot is executed directly, with [QThread object]->slot(), then the slot will execute in the thread that makes the call. | |||||
feedback
|
|
A slot called by a signal will run in the thread for which the Output:
Test program:
| |||
|
feedback
|