翻译 (自用,不保证对)
| Constant | Description | 
| Qt.AutoConnection | 默认方式,槽在信息号发送者的线程执行动作。(Default) If the receiver lives in the thread that emits the signal, is used. Otherwise, is used. The connection type is determined when the signal is emitted. | 
| Qt.DirectConnection | 槽立即在发送信号的线程,执行动作. | 
| Qt.QueuedConnection | 槽等到接收者的线程激活时,在接收者的线程内执行动作. | 
| Qt.BlockingQueuedConnection | 与上一个相同,不同在于,发送者的线程会阻塞(blocks),等待槽执行动作返回(returns). 注意:发送者和接收者不能在同一个线程,否则,线程会锁死(deadlock). | 
| Qt.UniqueConnection | 这个类型和以上的类型组合使用,用 OR 连接. 当这个类型被使用时, 如果这个信息与指定的槽已经建立了连接,connect() 不会有作用 (,比如, 同一个信号,重复连接同一个槽). 在Qt 4.6被引入. | 
| Qt.SingleShotConnection | 这个类型和以上的类型组合使用,用 OR 连接. 当这个类型被使用时,这个槽是一次性的,当信号发送到这个槽,槽会停止接收后续信息(broken). 在Qt 6.0被引入 | 
QObject::connect: Cannot queue arguments of type 'MyType'
See also:
原文
| Constant | Description | 
| Qt.AutoConnection | (Default) If the receiver lives in the thread that emits the signal, is used. Otherwise, is used. The connection type is determined when the signal is emitted. | 
| Qt.DirectConnection | The slot is invoked immediately when the signal is emitted. The slot is executed in the signalling thread. | 
| Qt.QueuedConnection | 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. | 
| Qt.BlockingQueuedConnection | Same as , except that the signalling thread blocks until the slot returns. This connection must not be used if the receiver lives in the signalling thread, or else the application will deadlock. | 
| Qt.UniqueConnection | This is a flag that can be combined with any one of the above connection types, using a bitwise OR. When is set, connect() will fail if the connection already exists (i.e. if the same signal is already connected to the same slot for the same pair of objects). This flag was introduced in Qt 4.6. | 
| Qt.SingleShotConnection | This is a flag that can be combined with any one of the above connection types, using a bitwise OR. When is set, the slot is going to be called only once; the connection will be automatically broken when the signal is emitted. This flag was introduced in Qt 6.0. | 
QObject::connect: Cannot queue arguments of type 'MyType'
When using signals and slots with multiple threads, see Signals and Slots Across Threads.
See also: