-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
|
@ -157,3 +157,13 @@ Message InterfaceProxy::invoke_method(const CallMessage &call)
|
|||
|
||||
return _invoke_method(call2);
|
||||
}
|
||||
|
||||
bool InterfaceProxy::invoke_method_noreply(const CallMessage &call)
|
||||
{
|
||||
CallMessage &call2 = const_cast<CallMessage &>(call);
|
||||
|
||||
if (call.interface() == NULL)
|
||||
call2.interface(name().c_str());
|
||||
|
||||
return _invoke_method_noreply(call2);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue