PySide6.QtRemoteObjects.QRemoteObjectPendingCallWatcher¶
- class QRemoteObjectPendingCallWatcher¶
- Provides a QObject-based API for watching a - QRemoteObjectPendingCall. More…- Synopsis¶- Methods¶- def - __init__()
 - Signals¶- def - finished()
 - Note - This documentation may contain snippets that were automatically translated from C++ to Python. We always welcome contributions to the snippet translation. If you see an issue with the translation, you can also let us know by creating a ticket on https:/bugreports.qt.io/projects/PYSIDE - Detailed Description¶- QRemoteObjectPendingCallWatcherprovides a signal indicating when a- QRemoteObjectPendingCallhas finished, allowing for convenient, non-blocking handling of the call.- __init__(call[, parent=None])¶
- Parameters:
- call – - QRemoteObjectPendingCall
- parent – - QObject
 
 
 - finished(self)¶
- Parameters:
 
 - This signal is emitted when the remote call has finished. - selfis the pointer to the watcher object that emitted the signal. A finished call will include a returnValue or error.- waitForFinished()¶
 - Blocks until the remote call has finished.