QAndroidBinder Class
Wraps the most important methods of Android Binder class. More...
| Header: | #include <QAndroidBinder> |
| qmake: | QT += androidextras |
| Since: | Qt 5.10 |
This class was introduced in Qt 5.10.
Public Types
| enum class | CallType { Normal, OneWay } |
Detailed Description
The QAndroidBinder is a convenience class that wraps the most important Android Binder methods.
Member Type Documentation
enum class QAndroidBinder::CallType
This enum is used with QAndroidBinder::transact() to describe the mode in which the IPC call is performed.
| Constant | Value | Description |
|---|---|---|
QAndroidBinder::CallType::Normal | 0 | normal IPC, meaning that the caller waits the result from the callee |
QAndroidBinder::CallType::OneWay | 1 | one-way IPC, meaning that the caller returns immediately, without waiting for a result from the callee |