- class Connection¶
Synopsis¶
Methods¶
def
__init__()
def
swap()
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¶
Represents a handle to a signal-slot (or signal-functor) connection.
It can be used to check if the connection is valid and to disconnect it using
disconnect()
. For a signal-functor connection without a context object, it is the only way to selectively disconnect that connection.As Connection is just a handle, the underlying signal-slot connection is unaffected when Connection is destroyed or reassigned.
- __init__()¶
Creates a Connection instance.
- __init__(other)
- Parameters:
other –
Connection
Create a copy of the handle to the
other
connection- swap(other)¶
- Parameters:
other –
Connection
Swaps this Connection instance with
other
. This operation is very fast and never fails.