Imt.Base C++ API V4.1.1.0
Loading...
Searching...
No Matches
RemotingServiceIfc.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_REMOTINGSERVICEIFC_H
4#define IMT_BASE_LIB_REMOTING_REMOTINGSERVICEIFC_H
5
8
9namespace imt {
10namespace base {
11namespace lib {
12namespace remoting {
13
20
21public:
22
26 virtual ~RemotingServiceIfc() = default;
27
33 virtual bool isRemoteObjectAdded(RemoteObjectIfc const& remoteObject) const = 0;
34
40 virtual bool isRemoteObjectAdded(int32_t const remoteObjectId) const = 0;
41
47 virtual bool add(RemoteObjectIfc& remoteObject) = 0;
48
54 virtual bool removeObject(RemoteObjectIfc& remoteObject) = 0;
55
56protected:
57
58 RemotingServiceIfc() noexcept = default;
59 RemotingServiceIfc(RemotingServiceIfc const&) noexcept = delete;
61 RemotingServiceIfc& operator=(RemotingServiceIfc const&) & noexcept = delete;
62 RemotingServiceIfc& operator=(RemotingServiceIfc&&) & noexcept = delete;
63
64};
65
66} // namespace remoting
67} // namespace lib
68} // namespace base
69} // namespace imt
70
71#endif // IMT_BASE_LIB_REMOTING_REMOTINGSERVICEIFC_H
Classes that implement this interface provide a generic mechanism to exchange data with a remoting pe...
Interface for the RemotingService.
virtual bool add(RemoteObjectIfc &remoteObject)=0
Adds a remote object.
virtual bool removeObject(RemoteObjectIfc &remoteObject)=0
Removes the given remote object.
virtual ~RemotingServiceIfc()=default
Destructor.
virtual bool isRemoteObjectAdded(int32_t const remoteObjectId) const =0
Returns true if the given remote object id is added to the remoting service.
virtual bool isRemoteObjectAdded(RemoteObjectIfc const &remoteObject) const =0
Returns true if the given remote object id is added to the remoting service.
This is a application specific file which is used to configure Imt.Base.Core.Math.
__int32 int32_t
Definition stdint.h:60