PySide6.QtDBus¶
- PySide6.QtDBus.QDBus
- PySide6.QtDBus.QDBusAbstractAdaptor
- PySide6.QtDBus.QDBusAbstractInterface
- PySide6.QtDBus.QDBusAbstractInterfaceBase
- PySide6.QtDBus.QDBusArgument
- PySide6.QtDBus.QDBusConnection
- PySide6.QtDBus.QDBusConnectionInterface
- PySide6.QtDBus.QDBusContext
- PySide6.QtDBus.QDBusError
- PySide6.QtDBus.QDBusInterface
- PySide6.QtDBus.QDBusMessage
- PySide6.QtDBus.QDBusObjectPath
- PySide6.QtDBus.QDBusPendingCall
- PySide6.QtDBus.QDBusPendingCallWatcher
- PySide6.QtDBus.QDBusServer
- PySide6.QtDBus.QDBusServiceWatcher
- PySide6.QtDBus.QDBusSignature
- PySide6.QtDBus.QDBusUnixFileDescriptor
- PySide6.QtDBus.QDBusVariant
- PySide6.QtDBus.QDBusVirtualObject
Detailed Description¶
An introduction to Inter-Process Communication and Remote Procedure Calling with D-Bus.
Introduction¶
D-Bus is an Inter-Process Communication (IPC) and Remote Procedure Calling (RPC) mechanism originally developed for Linux to replace existing and competing IPC solutions with one unified protocol. It has also been designed to allow communication between system-level processes (such as printer and hardware driver services) and normal user processes.
It uses a fast, binary message-passing protocol, which is suitable for
same-machine communication due to its low latency and low overhead.
Its specification is currently defined by the freedesktop.org
project, and is available to all parties.
Communication in general happens through a central server application, called the “bus” (hence the name), but direct application-to-application communication is also possible. When communicating on a bus, applications can query which other applications and services are available, as well as activate one on demand.
Using the Module¶
To include the definitions of modules classes, use the following directive:
import PySide6.QtDBus
Articles and Guides¶
The following documents contain information about Qt’s D-Bus integration features, and provide details about the mechanisms used to send and receive type information over the bus:
List of Classes¶
D |
|||