Imt.Base C++ API V4.1.1.0
Loading...
Searching...
No Matches
RemoteObjectSignalCallbackTemplate.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_REMOTEOBJECTSIGNALCALLBACKTEMPLATE_H
4#define IMT_BASE_LIB_REMOTING_REMOTEOBJECTSIGNALCALLBACKTEMPLATE_H
5
6#include <functional>
9
10namespace imt {
11namespace base {
12namespace lib {
13namespace remoting {
14
20template<uint16_t PROTOCOL_ID>
22
23public:
24
30 RemoteObjectSignalCallbackTemplate {pRemotingSendService, nullptr, {}} {
31 }
32
38 RemoteObjectSignalCallbackTemplate(RemotingServiceIfc* const pRemotingReceiveService, std::function<void()> receiveCallback) :
39 RemoteObjectSignalCallbackTemplate {nullptr, pRemotingReceiveService, receiveCallback} {
40 }
41
49 RemotingServiceIfc* const pRemotingReceiveService, std::function<void()> receiveCallback) :
50 RemoteObjectAbs {static_cast<int32_t>(PROTOCOL_ID), pRemotingSendService, pRemotingReceiveService},
51 m_receiveCallback {std::move(receiveCallback)} {
52 }
53
58 if (m_receiveCallback) {
59 m_receiveCallback();
60 }
61 }
62
66 // AXIVION Next Routine AutosarC++19_03-M0.1.8: required construct (given by interface)
68 // nothing to do - no data in signal
69 }
70
71private:
72
73 std::function<void()> m_receiveCallback;
74};
75
76} // namespace remoting
77} // namespace lib
78} // namespace base
79} // namespace imt
80
81#endif // IMT_BASE_LIB_REMOTING_REMOTEOBJECTSIGNALCALLBACKTEMPLATE_H
Deserializes various data types from the given byte buffer.
Serializes various data types into the given byte buffer.
Definition Serializer.h:58
Provides an abstract base class for all remote object implementations.
Defines a remote object template to serialize and deserialize a signal and send them to a callback fu...
RemoteObjectSignalCallbackTemplate(RemotingSendServiceIfc *const pRemotingSendService, RemotingServiceIfc *const pRemotingReceiveService, std::function< void()> receiveCallback)
Constructor for bi-directional communication.
void deserialize(::imt::base::core::serialization::Deserializer &) final
void serialize(::imt::base::core::serialization::Serializer &) const final
RemoteObjectSignalCallbackTemplate(RemotingSendServiceIfc *const pRemotingSendService)
Constructor for Tx only.
RemoteObjectSignalCallbackTemplate(RemotingServiceIfc *const pRemotingReceiveService, std::function< void()> receiveCallback)
Constructor for Rx only.
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