Corium 1.1.0
High-Performance Zero-Heap C++20 MPSC Application Runtime
Loading...
Searching...
No Matches
StoragePolicies.hpp
Go to the documentation of this file.
1
7#pragma once
8
9#include <cstddef>
10
11namespace corium {
12
17template <std::size_t MaxHandlers = 8, std::size_t InlineSize = 32>
19 static constexpr std::size_t max_handlers_per_event = MaxHandlers;
20 static constexpr std::size_t inline_storage_size = InlineSize;
21};
22
25
28
31
34
35} // namespace corium
Definition Application.hpp:16
Policy configuring compile-time handler capacity and delegate inline storage size.
Definition StoragePolicies.hpp:18
static constexpr std::size_t inline_storage_size
Definition StoragePolicies.hpp:20
static constexpr std::size_t max_handlers_per_event
Definition StoragePolicies.hpp:19