Imt.Base C++ API V4.1.1.0
Loading...
Searching...
No Matches
DataReceiverIfc.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_DATARECEIVERIFC_H
4#define IMT_BASE_LIB_REMOTING_DATARECEIVERIFC_H
5
7
8namespace imt {
9namespace base {
10namespace lib {
11namespace remoting {
12
19
20public:
21
27 // AXIVION Next Codeline AutosarC++19_03-A8.4.7: Pass by value not possible for byte array.
28 virtual void onDataReceived(uint8_t const* const pData, uint32_t const countDataBytes) = 0;
29
30protected:
31
35 DataReceiverIfc() noexcept = default;
36
40 ~DataReceiverIfc() noexcept = default;
41
42
45 DataReceiverIfc& operator=(DataReceiverIfc const&) & = delete;
46 DataReceiverIfc& operator=(DataReceiverIfc&&) & = delete;
47};
48
49} // namespace remoting
50} // namespace lib
51} // namespace base
52} // namespace imt
53
54#endif // IMT_BASE_LIB_REMOTING_DATARECEIVERIFC_H
Inteface for a receiver that can be called when received data needs to be processed.
virtual void onDataReceived(uint8_t const *const pData, uint32_t const countDataBytes)=0
Callback if data is received.
DataReceiverIfc() noexcept=default
Default constructor.
This is a application specific file which is used to configure Imt.Base.Core.Math.
unsigned __int32 uint32_t
Definition stdint.h:64
unsigned __int8 uint8_t
Definition stdint.h:62