Imt.Base C++ API V4.1.1.0
Loading...
Searching...
No Matches
RemoteObjectAbs.h
Go to the documentation of this file.
1// (c) IMT - Information Management Technology AG, CH-9470 Buchs, www.imt.ch.
2
3#ifndef IMT_BASE_LIB_REMOTING_REMOTEOBJECTABS_H
4#define IMT_BASE_LIB_REMOTING_REMOTEOBJECTABS_H
5
14
15namespace imt {
16namespace base {
17namespace lib {
18namespace remoting {
19
25// AXIVION Next Construct AutosarC++19_03-A12.0.1: All special operations deleted by Nonmovable
28
29public:
30
38 explicit RemoteObjectAbs(int32_t const uniqueIdToAttach, RemotingSendServiceIfc* const pRemotingSendService = nullptr, RemotingServiceIfc* const pRemotingReceiveService = nullptr);
39
43 int32_t getUniqueId() const final;
44
48 bool send() final;
49
53 void onReceive(::imt::base::core::serialization::Deserializer& buffer) final;
54
58 void attach(int32_t const uniqueId) final;
59
63 void detach() final;
64
65protected:
66
71 ~RemoteObjectAbs() noexcept;
72
78
79private:
80
81 RemotingSendServiceIfc* const m_pRemotingSendService;
82 RemotingServiceIfc* const m_pRemotingReceiveService;
83 // AXIVION Next Codeline AutosarC++19_03-A12.1.3: All data members initialized in custom constructor
84 int32_t m_uniqueId;
85};
86
87} // namespace remoting
88} // namespace lib
89} // namespace base
90} // namespace imt
91
92#endif // IMT_BASE_LIB_REMOTING_REMOTEOBJECTABS_H
Base class for a not movable class that disables copy, assignment and move of instances.
Definition Nonmovable.h:51
Provides an abstract base class for all remote object implementations.
void attach(int32_t const uniqueId) final
virtual uint32_t getMaxTransferSize() const
Gets the maximum number of bytes that can be transfered by one transmission.
RemoteObjectAbs(int32_t const uniqueIdToAttach, RemotingSendServiceIfc *const pRemotingSendService=nullptr, RemotingServiceIfc *const pRemotingReceiveService=nullptr)
Constructor.
void onReceive(::imt::base::core::serialization::Deserializer &buffer) final
Classes that implement this interface provide a generic mechanism to exchange data with a remoting pe...
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.
__int32 int32_t
Definition stdint.h:60
unsigned __int32 uint32_t
Definition stdint.h:64