QAndroidServiceConnection Class
Header: | #include <QAndroidServiceConnection> |
qmake: | QT += androidextras |
Since: | Qt 5.10 |
Public Functions
QAndroidServiceConnection() | |
QAndroidServiceConnection(const QAndroidJniObject &serviceConnection) | |
virtual | ~QAndroidServiceConnection() |
QAndroidJniObject | handle() const |
virtual void | onServiceConnected(const QString &name, const QAndroidBinder &serviceBinder) = 0 |
virtual void | onServiceDisconnected(const QString &name) = 0 |
Detailed Description
The QAndroidServiceConnection is a convenience abstract class which wraps the Android ServiceConnection interface.
It is useful when you perform a QtAndroid::bindService operation.
Member Function Documentation
QAndroidServiceConnection::QAndroidServiceConnection()
Creates a new object
QAndroidServiceConnection::QAndroidServiceConnection(const QAndroidJniObject &serviceConnection)
Creates a new object from an existing serviceConnection.
It's useful when you have your own Java implementation. Of course onServiceConnected()/onServiceDisconnected() will not be called anymore.
[virtual]
QAndroidServiceConnection::~QAndroidServiceConnection()
Destroys the instance of QAndroidServiceConnection. The destructor is virtual.
QAndroidJniObject QAndroidServiceConnection::handle() const
returns the underline QAndroidJniObject
[pure virtual]
void QAndroidServiceConnection::onServiceConnected(const QString &name, const QAndroidBinder &serviceBinder)
This notification is called when the client managed to connect to the service. The name contains the server name, the serviceBinder is the binder that the client uses to perform IPC operations.
Warning: This method is called from Binder's thread which is different from the thread that this object was created.
returns the underline QAndroidJniObject
[pure virtual]
void QAndroidServiceConnection::onServiceDisconnected(const QString &name)
Called when a connection to the Service has been lost. The name parameter specifies which connectioen was lost.
Warning: This method is called from Binder's thread which is different from the thread that this object was created.
returns the underline QAndroidJniObject
© 2019 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.