I'm new to QT programming. I'm trying to communicate between two qt applications using DBUS, I've been able to create a interface adapter and communicate as follows,
- Registering service on the server application.
- connecting to the interface object on the client side and calling the methods in the server.
My question is, if the server has to send back messages to client, should client create a new interface or is there any other way this can be done?
D-Bus has signals (not Qt signals, but they are mapped to signals if used with
QDBusAbstractAdaptor
).This example shows a server D-Bus object that can send notifications to the clients:
Interface definition: