3#ifndef IMT_BASE_LIB_REMOTING_REMOTEOBJECTTEMPLATE_H
4#define IMT_BASE_LIB_REMOTING_REMOTEOBJECTTEMPLATE_H
63template<
class ProtocolType, u
int16_t PROTOCOL_ID>
85 m_pDataToSend {nullptr} {
92 if (m_pPortOut ==
nullptr) {
93 ASSERT_DEBUG1(
false,
"Output port not set, did you forget to pass the port in the constructor?");
97 ProtocolType
const message {buffer};
98 m_pPortOut->
write(PROTOCOL_ID, &message,
static_cast<size_t>(buffer.getBufferPos()));
105 if (m_pDataToSend !=
nullptr) {
106 m_pDataToSend->serialize(buffer);
120 m_pDataToSend = protocolData;
127 ProtocolType
const* m_pDataToSend;
void ASSERT_DEBUG1(bool const condition, char_t const *const pMessage) noexcept
"Assert for debugging only" (ASSERT_DEBUG).
void ASSERT_DEBUG(bool const condition) noexcept
Deserializes various data types from the given byte buffer.
Interface to write a serializable object to another object.
virtual void write(uint16_t const protocolIdentifier, ::imt::base::core::serialization::SerializableIfc const *const pEventData, size_t const eventDataSizeBytes)=0
Write object.
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 directly to a ...
void deserialize(::imt::base::core::serialization::Deserializer &buffer) final
void serialize(::imt::base::core::serialization::Serializer &buffer) const final
void setDataToSend(ProtocolType const *const protocolData)
Set the reference to the data which is serialized.
RemoteObjectTemplate(RemotingSendServiceIfc *const pRemotingSendService, RemotingServiceIfc *const pRemotingReceiveService=nullptr, ::imt::base::core::serialization::SerializableSenderIfc *const portOut=nullptr)
Constructor.
RemoteObjectTemplate()=default
Constructor.
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.