Описание тега queued-connection

Qt::QueuedConnection is a connection type between a signal and a slot.

A signal and a slot can be connected in several ways, one of which is Qt::QueuedConnection. When this connection type is used the slot is invoked when control returns to the event loop of the receiver's thread. The slot is executed in the receiver's thread. Learn more about it here and here.