An abstract class that translates network message to interface function call. More...
#include <rpc_call.hpp>
Public Member Functions | |
AbstractRPCCall () | |
Constructor. | |
virtual void | execute ()=0 |
Executes the function call with given arguments. | |
virtual shared_ptr< GenericRPCReplyMessage > | getReturnValue () const |
Holds the function return value if any. | |
virtual string | getType () const =0 |
Returns type of the function, usually name of the function. | |
virtual void | setArguments (const MessagePackage &message)=0 |
Sets arguments of the function call from network message. | |
virtual | ~AbstractRPCCall () |
Destructor. | |
An abstract class that translates network message to interface function call.
|
inline |
Constructor.
|
inlinevirtual |
Destructor.
|
pure virtual |
Executes the function call with given arguments.
|
inlinevirtual |
Holds the function return value if any.
Reimplemented in kanzi::connect::RPCCall< InterfaceClass, SessionClass, MessageClass >.
|
pure virtual |
Returns type of the function, usually name of the function.
Implemented in kanzi::connect::RPCCall< InterfaceClass, SessionClass, MessageClass >.
|
pure virtual |
Sets arguments of the function call from network message.
message | Network message that has the arguments for the function call. |
Implemented in kanzi::connect::RPCCall< InterfaceClass, SessionClass, MessageClass >.