Imt.Base C++ API V4.1.1.0
Loading...
Searching...
No Matches
RemotePools.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_REMOTEPOOLS_H
4#define IMT_BASE_LIB_REMOTING_REMOTEPOOLS_H
5
6#include <array>
14
15namespace imt {
16namespace base {
17namespace lib {
18namespace remoting {
19
24
29
34
35public:
36
37 // AXIVION Next Line AutosarC++19_03-M11.0.1: Allowed definition
39
47 std::array<uint8_t, imt::base::lib::remoting::DATA_FRAME_SIZE> m_data;
48 };
49
50 // AXIVION Next Line AutosarC++19_03-M11.0.1: Allowed definition
51 static ::imt::base::core::util::ObjectPoolAllocator<DataFrameData> s_dataFrameAllocator;
52
53private:
54
55 static std::array<RegistryPageNode, REMOTE_OBJECT_MAX> s_registryPageNodeArray;
56
60 static std::array<DataFrameData, DATA_FRAME_POOL_SIZE> s_dataFramePool;
61};
62
63} // namespace remoting
64} // namespace lib
65} // namespace base
66} // namespace imt
67
68#endif // IMT_BASE_LIB_REMOTING_REMOTEPOOLS_H
Base class for a static class that disables construction, copy, assignment and move of instances.
Definition StaticClass.h:48
fixed size pool allocator
static RegistryPageNodeAllocator s_registryPageNodeAllocator
Definition RemotePools.h:38
static ::imt::base::core::util::ObjectPoolAllocator< DataFrameData > s_dataFrameAllocator
Definition RemotePools.h:51
This is a application specific file which is used to configure Imt.Base.Core.Math.
Node used for LinkedList class.
Definition LinkedList.h:65
std::array< uint8_t, imt::base::lib::remoting::DATA_FRAME_SIZE > m_data
data array with maximum DATA_FRAME_SIZE length
Definition RemotePools.h:47