Related to Qt: Do events get processed in order?
Do Qt::QueuedConnection
signals always get invoked in order?
So:
void A::func()
{
emit first_signal();
emit second_signal();
}
If these are both connected by Qt::QueuedConnection
to slots will they always be invoked in the order first_signal()
then second_signal()
?