Hello!
I've some questions regarding "emit".
(1) I've done a test and it seems to me that emitting a signal which is connected to a slot in the calling thread equals function call. Is this right?
(2) Suppose we have thread A and thread B, and now thread A is in "exec()" loop. A signal which is connected to a slot in thread A is emitted from thread B. Then how does the system treat this signal? Is the event related to the signal added to thread A's event queue and not executed until the events before it are all processed?
Thanks in advance!