summaryrefslogtreecommitdiff
path: root/notification-ex/dbus_sender_implementation.h
diff options
context:
space:
mode:
authorhyunho <hhstark.kang@samsung.com>2020-11-05 18:49:22 +0900
committerHyunho Kang <hhstark.kang@samsung.com>2020-11-17 03:04:40 +0000
commit7c768205c18aa3fa8900c84f4cbb8e8470dc1102 (patch)
tree1627dbfa45ab2199c8f81896180f2229c8edf92b /notification-ex/dbus_sender_implementation.h
parentb3311f64b90e16fe81a296a2a6d6da1a1a406624 (diff)
downloadnotification-7c768205c18aa3fa8900c84f4cbb8e8470dc1102.tar.gz
notification-7c768205c18aa3fa8900c84f4cbb8e8470dc1102.tar.bz2
notification-7c768205c18aa3fa8900c84f4cbb8e8470dc1102.zip
Replace gdbus with socket for bulk communication
Change-Id: I485ae58573534f63bf2c0cd5f4196792474756c8 Signed-off-by: hyunho <hhstark.kang@samsung.com>
Diffstat (limited to 'notification-ex/dbus_sender_implementation.h')
-rw-r--r--notification-ex/dbus_sender_implementation.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/notification-ex/dbus_sender_implementation.h b/notification-ex/dbus_sender_implementation.h
index d7f0d5b..7d1c501 100644
--- a/notification-ex/dbus_sender_implementation.h
+++ b/notification-ex/dbus_sender_implementation.h
@@ -39,11 +39,16 @@ class DBusSender::Impl {
private:
std::string GetBusName(
std::string appid, std::string dest_appid) const;
- bool EmitSignal(std::string bus_name, std::string signal_name, GVariant* data);
+ bool EmitSignal(std::string bus_name,
+ std::string signal_name, GVariant* data);
GDBusMessage* MethodCall(std::string appid, std::string method_name,
tizen_base::Bundle serialized);
GDBusMessage* MethodCall(std::string appid, const IEventInfo& info,
std::list<tizen_base::Bundle> serialized);
+ std::list<tizen_base::Bundle> MethodCallWithSocket(std::string appid,
+ std::string method_name, tizen_base::Bundle serialized);
+ GUnixFDList* GetFdList(int fd);
+ int CheckReplyMessage(GDBusMessage* reply);
std::string path_;
DBusSender* parent_;
};