Imt.Base C++ API V4.1.1.0
Loading...
Searching...
No Matches
imt::base::lib::remoting::RemoteObjectAbs Class Reference

Provides an abstract base class for all remote object implementations. More...

#include <Imt.Base.Lib.Remoting/inc/Imt.Base.Lib.Remoting/RemoteObjectAbs.h>

Inheritance diagram for imt::base::lib::remoting::RemoteObjectAbs:
imt::base::lib::remoting::RemoteObjectIfc imt::base::core::platform::Nonmovable imt::base::core::serialization::SerializableIfc imt::base::lib::remoting::RemoteObjectCallbackTemplate< ProtocolType, PROTOCOL_ID > imt::base::lib::remoting::RemoteObjectSignalCallbackTemplate< PROTOCOL_ID > imt::base::lib::remoting::RemoteObjectSignalTemplate< PROTOCOL_ID > imt::base::lib::remoting::RemoteObjectTemplate< ProtocolType, PROTOCOL_ID > imt::base::lib::remoting::gmock::MockRemoteObject

Public Member Functions

 RemoteObjectAbs (int32_t const uniqueIdToAttach, RemotingSendServiceIfc *const pRemotingSendService=nullptr, RemotingServiceIfc *const pRemotingReceiveService=nullptr)
 Constructor.
 
int32_t getUniqueId () const final
 
bool send () final
 
void onReceive (::imt::base::core::serialization::Deserializer &buffer) final
 
void attach (int32_t const uniqueId) final
 
void detach () final
 
virtual int32_t getUniqueId () const =0
 Gets the unique id of this remote object.
 
virtual bool send ()=0
 Sends this remote object.
 
virtual void onReceive (::imt::base::core::serialization::Deserializer &buffer)=0
 Will be called when data has been received.
 
virtual void attach (int32_t const uniqueId)=0
 Attaches this remote object to remoting service.
 
virtual void detach ()=0
 Detaches this remote object from remoting service.
 
- Public Member Functions inherited from imt::base::core::serialization::SerializableIfc
virtual void deserialize (Deserializer &buffer)=0
 Deserialize this object from the given deserialize.
 
virtual void serialize (Serializer &buffer) const =0
 Serialize this object into the given serializer.
 

Protected Member Functions

 ~RemoteObjectAbs () noexcept
 Destructor.
 
virtual uint32_t getMaxTransferSize () const
 Gets the maximum number of bytes that can be transfered by one transmission.
 
- Protected Member Functions inherited from imt::base::lib::remoting::RemoteObjectIfc
 RemoteObjectIfc () noexcept=default
 
 RemoteObjectIfc (RemoteObjectIfc const &) noexcept=default
 
 RemoteObjectIfc (RemoteObjectIfc &&) noexcept=default
 
 ~RemoteObjectIfc () noexcept=default
 
RemoteObjectIfcoperator= (RemoteObjectIfc const &) &noexcept=default
 
RemoteObjectIfcoperator= (RemoteObjectIfc &&) &noexcept=default
 
- Protected Member Functions inherited from imt::base::core::serialization::SerializableIfc
 SerializableIfc () noexcept=default
 
 SerializableIfc (SerializableIfc const &) noexcept=default
 
 SerializableIfc (SerializableIfc &&) noexcept=default
 
 ~SerializableIfc () noexcept=default
 
SerializableIfcoperator= (SerializableIfc const &) &noexcept=default
 
SerializableIfcoperator= (SerializableIfc &&) &noexcept=default
 

Additional Inherited Members

- Static Public Attributes inherited from imt::base::lib::remoting::RemoteObjectIfc
static constexpr int32_t UNDEFINED_ID {-1}
 ID to indicate no or an invalid remote object.
 

Detailed Description

Provides an abstract base class for all remote object implementations.

The user of this class only has to override the methods serialize and deserialize (

See also
SerializableIfc).

Definition at line 26 of file RemoteObjectAbs.h.

Constructor & Destructor Documentation

◆ RemoteObjectAbs()

imt::base::lib::remoting::RemoteObjectAbs::RemoteObjectAbs ( int32_t const  uniqueIdToAttach,
RemotingSendServiceIfc *const  pRemotingSendService = nullptr,
RemotingServiceIfc *const  pRemotingReceiveService = nullptr 
)
explicit

Constructor.

Attaches itself automatically at the remotingService if a valid Id is passed and the service is not nullptr.

Parameters
uniqueIdToAttachUnique ID to attach to RemotingService
pRemotingSendServiceThe sending service to which this object will be attached
pRemotingReceiveServiceThe receiving service to which this object will be attached

◆ ~RemoteObjectAbs()

imt::base::lib::remoting::RemoteObjectAbs::~RemoteObjectAbs ( )
protectednoexcept

Destructor.

Detaches the object from remotingService.

Member Function Documentation

◆ attach()

void imt::base::lib::remoting::RemoteObjectAbs::attach ( int32_t const  uniqueId)
finalvirtual

◆ detach()

void imt::base::lib::remoting::RemoteObjectAbs::detach ( )
finalvirtual

◆ getMaxTransferSize()

virtual uint32_t imt::base::lib::remoting::RemoteObjectAbs::getMaxTransferSize ( ) const
protectedvirtual

Gets the maximum number of bytes that can be transfered by one transmission.

Returns
Returns the maximum number of bytes that can be transfered by one transmission

◆ getUniqueId()

int32_t imt::base::lib::remoting::RemoteObjectAbs::getUniqueId ( ) const
finalvirtual

◆ onReceive()

void imt::base::lib::remoting::RemoteObjectAbs::onReceive ( ::imt::base::core::serialization::Deserializer buffer)
finalvirtual

◆ send()

bool imt::base::lib::remoting::RemoteObjectAbs::send ( )
finalvirtual

The documentation for this class was generated from the following file: