Connection Class

(QMetaObject::Connection)
Header: #include <Connection>
qmake: QT += core

Public Functions

Connection()
Connection(const Connection &other)
~Connection()
operator bool() const
Connection &operator=(const Connection &other)

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 QObject::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.

Member Function Documentation

Connection::Connection()

Creates a Connection instance.

Connection::Connection(const Connection &other)

Copy constructor.

Connection::~Connection()

Destructor for QMetaObject::Connection.

Connection::operator bool() const

Returns true if the connection is valid.

The connection is valid if the call to QObject::connect succeeded. The connection is invalid if QObject::connect was not able to find the signal or the slot, or if the arguments do not match.

Connection &Connection::operator=(const Connection &other)

Copy-assignment operator.