-support noreply messages in the library
-> not yet in the XML file
This commit is contained in:
parent
bbca1b0acc
commit
f51dc1bf4c
6 changed files with 30 additions and 1 deletions
|
@ -95,6 +95,8 @@ protected:
|
|||
{}
|
||||
|
||||
virtual Message _invoke_method(CallMessage &) = 0;
|
||||
|
||||
virtual bool _invoke_method_noreply(CallMessage &call) = 0;
|
||||
|
||||
InterfaceProxyTable _interfaces;
|
||||
};
|
||||
|
@ -164,6 +166,8 @@ public:
|
|||
InterfaceProxy(const std::string &name);
|
||||
|
||||
Message invoke_method(const CallMessage &);
|
||||
|
||||
bool invoke_method_noreply(const CallMessage &call);
|
||||
|
||||
bool dispatch_signal(const SignalMessage &);
|
||||
|
||||
|
|
|
@ -201,6 +201,8 @@ public:
|
|||
private:
|
||||
|
||||
Message _invoke_method(CallMessage &);
|
||||
|
||||
bool _invoke_method_noreply(CallMessage &call);
|
||||
|
||||
bool handle_message(const Message &);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue