3#ifndef IMT_BASE_LIB_REMOTING_REMOTEOBJECTCALLBACKTEMPLATE_H
4#define IMT_BASE_LIB_REMOTING_REMOTEOBJECTCALLBACKTEMPLATE_H
21template<
class ProtocolType, u
int16_t PROTOCOL_ID>
52 RemotingServiceIfc*
const pRemotingReceiveService, std::function<
void(ProtocolType
const&)> receiveCallback) :
54 m_sendCallback {std::move(sendCallback)},
55 m_receiveCallback {std::move(receiveCallback)} {
62 ProtocolType
const message {buffer};
63 if (m_receiveCallback) {
64 m_receiveCallback(message);
73 ProtocolType
const& messageToSend {m_sendCallback()};
74 messageToSend.serialize(buffer);
80 std::function<ProtocolType
const&()> m_sendCallback;
81 std::function<void(ProtocolType
const&)> m_receiveCallback;
Deserializes various data types from the given byte buffer.
Serializes various data types into the given byte buffer.
Provides an abstract base class for all remote object implementations.
Defines a remote object template to serialize and deserialize a protocol and send them to a callback ...
RemoteObjectCallbackTemplate(RemotingServiceIfc *const pRemotingReceiveService, std::function< void(ProtocolType const &)> receiveCallback)
Constructor for Rx only.
void deserialize(::imt::base::core::serialization::Deserializer &buffer) final
void serialize(::imt::base::core::serialization::Serializer &buffer) const final
RemoteObjectCallbackTemplate(RemotingSendServiceIfc *const pRemotingSendService, std::function< ProtocolType const &()> sendCallback)
Constructor for Tx only.
RemoteObjectCallbackTemplate(RemotingSendServiceIfc *const pRemotingSendService, std::function< ProtocolType const &()> sendCallback, RemotingServiceIfc *const pRemotingReceiveService, std::function< void(ProtocolType const &)> receiveCallback)
Constructor for bi-directional communication.
Interface for the remoting sending service (allows remote objects to initiate the send by themselves)...
Interface for the RemotingService.
This is a application specific file which is used to configure Imt.Base.Core.Math.