QDBus Namespace

The QDBus namespace contains miscellaneous identifiers used throughout the Qt D-Bus module. More...

Header: #include <QDBus>
CMake: find_package(Qt6 REQUIRED COMPONENTS DBus)
target_link_libraries(mytarget PRIVATE Qt6::DBus)
qmake: QT += dbus

Types

enum CallMode { NoBlock, Block, BlockWithGui, AutoDetect }

Detailed Description

Type Documentation

enum QDBus::CallMode

This enum describes the various ways of placing a function call. The valid modes are:

ConstantValueDescription
QDBus::NoBlock0Place the call but don't wait for the reply (the reply's contents will be discarded).
QDBus::Block1Don't use an event loop to wait for a reply, but instead block on network operations while waiting. This means the user-interface may not be updated until the function returns.
QDBus::BlockWithGui2Use the Qt event loop to wait for a reply. This means that the user-interface will stay responsive (processing input events), but it also means other events may happen, like signal delivery and other D-Bus method calls.
QDBus::AutoDetect3Automatically detect if the called function has a reply.

When using BlockWithGui, applications must be prepared for reentrancy in any function.

© 2024 The Qt Company Ltd. Documentation contributions included herein are the copyrights of their respective owners. The documentation provided herein is licensed under the terms of the GNU Free Documentation License version 1.3 as published by the Free Software Foundation. Qt and respective logos are trademarks of The Qt Company Ltd. in Finland and/or other countries worldwide. All other trademarks are property of their respective owners.