QRemoteObjectPendingCallWatcher#
Provides a QObject
-based API for watching a QRemoteObjectPendingCall
. More…
Synopsis#
Functions#
def
waitForFinished
()
Signals#
def
finished
(self)
Detailed Description#
QRemoteObjectPendingCallWatcher
provides a signal indicating when a QRemoteObjectPendingCall
has finished, allowing for convenient, non-blocking handling of the call.
- class PySide6.QtRemoteObjects.QRemoteObjectPendingCallWatcher(call[, parent=None])#
- Parameters
- PySide6.QtRemoteObjects.QRemoteObjectPendingCallWatcher.finished(self)#
- Parameters
self –
PySide6.QtRemoteObjects.QRemoteObjectPendingCallWatcher
This signal is emitted when the remote call has finished. self
is the pointer to the watcher object that emitted the signal. A finished call will include a returnValue or error.
- PySide6.QtRemoteObjects.QRemoteObjectPendingCallWatcher.waitForFinished()#
Blocks until the remote call has finished.