Imt.Base C++ API V4.1.1.0
Loading...
Searching...
No Matches
RemoteObjectIfc.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_REMOTEOBJECTIFC_H
4#define IMT_BASE_LIB_REMOTING_REMOTEOBJECTIFC_H
5
9
10namespace imt {
11namespace base {
12namespace lib {
13namespace remoting {
14
26
27public:
28
32 static constexpr int32_t UNDEFINED_ID {-1};
33
38 virtual int32_t getUniqueId() const = 0;
39
44 virtual bool send() = 0;
45
51
57 virtual void attach(int32_t const uniqueId) = 0;
58
62 virtual void detach() = 0;
63
64protected:
65
66 RemoteObjectIfc() noexcept = default;
67 RemoteObjectIfc(RemoteObjectIfc const&) noexcept = default;
68 RemoteObjectIfc(RemoteObjectIfc&&) noexcept = default;
69 ~RemoteObjectIfc() noexcept = default;
70 RemoteObjectIfc& operator=(RemoteObjectIfc const&) & noexcept = default;
71 RemoteObjectIfc& operator=(RemoteObjectIfc&&) & noexcept = default;
72
73};
74
75} // namespace remoting
76} // namespace lib
77} // namespace base
78} // namespace imt
79
80#endif // IMT_BASE_LIB_REMOTING_REMOTEOBJECTIFC_H
Deserializes various data types from the given byte buffer.
Serialization is the process of translating data structures into a binary representation.
Classes that implement this interface provide a generic mechanism to exchange data with a remoting pe...
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 bool send()=0
Sends this remote object.
virtual void detach()=0
Detaches this remote object from remoting service.
virtual int32_t getUniqueId() const =0
Gets the unique id of this remote object.
static constexpr int32_t UNDEFINED_ID
ID to indicate no or an invalid remote object.
This is a application specific file which is used to configure Imt.Base.Core.Math.
__int32 int32_t
Definition stdint.h:60