Module qtjambi
Package io.qt.core

Interface QMetaObject.Connection

Enclosing class:
QMetaObject

public static interface QMetaObject.Connection
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(Connection). 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.
  • Method Summary

    Modifier and Type
    Method
    Description
    boolean
    Returns true if the connection is valid.
    Provides the receiver of the signal-slot connection.
    Provides the sender of the connected signal.
  • Method Details

    • isConnected

      boolean isConnected()
      Returns true if the connection is valid.
    • sender

      Provides the sender of the connected signal.
      Returns:
      sender
    • receiver

      Object receiver()
      Provides the receiver of the signal-slot connection.
      Returns:
      receiver