class QRemoteObjectPendingCallWatcher#

提供了用于监视 QRemoteObjectPendingCall 的基于 QObject 的 API。 更多

Inheritance diagram of PySide6.QtRemoteObjects.QRemoteObjectPendingCallWatcher

概要#

方法#

信号#

注意

本文档可能包含自动从C++翻译到Python的片段。我们始终欢迎对片段翻译的贡献。如果您发现翻译有问题,也可以通过在https:/bugreports.qt.io/projects/PYSIDE上创建票据来通知我们。

详细描述#

QRemoteObjectPendingCallWatcher提供了一个信号,用于指示QRemoteObjectPendingCall是否已完成,从而方便地对调用进行非阻塞处理。

__init__(call[, parent=None])#
参数:
finished(self)#
参数:

selfQRemoteObjectPendingCallWatcher

当远程调用完成时发出此信号。self是发出信号的监视器对象的指针。完成的调用将包含returnValue或error。

waitForFinished()#

阻塞直到远程调用完成。