QtDBus
Enumerations | |
| enum | CallMode |
| enum QDBus::CallMode |
This enum describes the various ways of placing a function call. The valid modes are:
NoBlock Place the call but don't wait for the reply (the reply's contents will be discarded). Block Don'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. BlockWithGui Use 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. AutoDetect Automatically detect if the called function has a reply.
When using BlockWithGui, applications must be prepared for reentrancy in any function.
Definition at line 34 of file qdbusconnection.h.
00034 { 00035 NoBlock, 00036 Block, 00037 BlockWithGui, 00038 AutoDetect 00039 };
1.5.1