Imt.Base C++ API V4.1.1.0
Loading...
Searching...
No Matches
RemotingReceiveService.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_REMOTINGRECEIVESERVICE_H
4#define IMT_BASE_LIB_REMOTING_REMOTINGRECEIVESERVICE_H
5
11
12namespace imt {
13namespace base {
14namespace lib {
15namespace remoting {
16
20// AXIVION Next Construct AutosarC++19_03-M3.4.1: No definition in primary file to separate concerns.
22
23public:
24
29
33 // AXIVION Next Codeline AutosarC++19_03-A8.4.7: Pass by value not possible for byte array.
34 void onDataReceived(uint8_t const* const pData, uint32_t const countDataBytes) final;
35
36private:
37
38 static int32_t onGetRemoteObjectId(::imt::base::core::serialization::Deserializer& receiveSerializer);
39};
40
41} // namespace remoting
42} // namespace lib
43} // namespace base
44} // namespace imt
45
46#endif // IMT_BASE_LIB_REMOTING_REMOTINGRECEIVESERVICE_H
Deserializes various data types from the given byte buffer.
Inteface for a receiver that can be called when received data needs to be processed.
Service for remote objects to receive data from another remote object.
void onDataReceived(uint8_t const *const pData, uint32_t const countDataBytes) final
Provides the base Class for RemotingSendService and RemotingReceiveService, which implements the Remo...
This is a application specific file which is used to configure Imt.Base.Core.Math.
__int32 int32_t
Definition stdint.h:60
unsigned __int32 uint32_t
Definition stdint.h:64
unsigned __int8 uint8_t
Definition stdint.h:62