Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
1.1k views
in Technique[技术] by (71.8m points)

c++ - Signal execution order with Qt::QueuedConnection

I have two signals A and B emitted one after another from an object in thread X, and the two connected slots are in the Main thread. The connection is QueuedConnection (due to multithreading connect). My question is: is the order of the signals respected in their call to the slots, or is there a chance for them to be executed in an arbitrary order?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

Both of your signals will be queued in a single event queue of the X thread, so corresponding slots will be executed in the order of signals were emitted.

But in the following case you can't rely on the slots execution order:

signal A connected to a slot in X thread
signal B connected to a slot in Y thread

Also, there is a Qt::BlockingQueuedConnection connection type. If you connect your first signal using it, your current thread will be blocked until the corresponding slot in another thread finishes its job.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share
...