Imt.Base C++ API V4.1.1.0
Loading...
Searching...
No Matches
DataSenderIfc.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_DATASENDERIFC_H
4#define IMT_BASE_LIB_REMOTING_DATASENDERIFC_H
5
7
8namespace imt {
9namespace base {
10namespace lib {
11namespace remoting {
12
19
20public:
21
22 DataSenderIfc(DataSenderIfc const&) = delete;
26
33 // AXIVION Next Codeline AutosarC++19_03-A18.1.1: use C-style array for compatibility
34 // AXIVION Next Codeline AutosarC++19_03-A8.4.7: Pass by value not possible for byte array.
35 virtual bool sendData(uint8_t const pData[], uint32_t const countDataBytes) = 0;
36
40 // AXIVION Next Codeline AutosarC++19_03-M9.3.3: Extension point that allows modification of object state, must not be const.
41 virtual void onTransmissionComplete() = 0;
42
46 // AXIVION Next Codeline AutosarC++19_03-M9.3.3: Extension point that allows modification of object state, must not be const.
47 virtual void onTransmissionError() = 0;
48
49protected:
50
54 DataSenderIfc() noexcept = default;
55
59 ~DataSenderIfc() noexcept = default;
60};
61
62} // namespace remoting
63} // namespace lib
64} // namespace base
65} // namespace imt
66
67#endif // IMT_BASE_LIB_REMOTING_DATASENDERIFC_H
Inteface for a sender that can be called to send byte data.
DataSenderIfc & operator=(DataSenderIfc const &) &=delete
DataSenderIfc & operator=(DataSenderIfc &&) &=delete
virtual void onTransmissionError()=0
Called on a transmission error.
DataSenderIfc() noexcept=default
Default constructor.
virtual bool sendData(uint8_t const pData[], uint32_t const countDataBytes)=0
Send data.
DataSenderIfc(DataSenderIfc &&)=delete
DataSenderIfc(DataSenderIfc const &)=delete
virtual void onTransmissionComplete()=0
Called on a completed transmission.
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