我想在其他线程中调用 QObject 的任意槽。
我有:
| Arguments: | Can use QueuedConnection?
QMetaObject::invokeMethod | fixed number | YES
qt_metacall | array | NO
我想:
<something> | array | YES
我不想做一些事情,比如根据参数的数量复制 invokeMethod 代码。
在哪里获得接受参数数组的调用方法或如何使 qt_metacall 排队?