|
Container System 0.1.0
High-performance C++20 type-safe container framework with SIMD-accelerated serialization
|
Asio integration patterns: strands, timers, thread pools, and message queues. More...
#include <iostream>#include <memory>#include <vector>#include <chrono>#include <thread>#include <functional>#include <queue>#include <mutex>#include <condition_variable>#include "container.h"
Go to the source code of this file.
Macros | |
| #define | HAS_ASIO 0 |
Functions | |
| void | print_section (const std::string &title) |
| Helper to print section headers. | |
| void | print_success (const std::string &message) |
| Helper to print success message. | |
| void | print_info (const std::string &message) |
| Helper to print info message. | |
| int | main () |
Asio integration patterns: strands, timers, thread pools, and message queues.
Definition in file asio_integration_example.cpp.
| #define HAS_ASIO 0 |
Definition at line 47 of file asio_integration_example.cpp.
| int main | ( | ) |
Definition at line 384 of file asio_integration_example.cpp.
References print_section().

| void print_info | ( | const std::string & | message | ) |
Helper to print info message.
Definition at line 75 of file asio_integration_example.cpp.
| void print_section | ( | const std::string & | title | ) |
Helper to print section headers.
Definition at line 59 of file asio_integration_example.cpp.
Referenced by main().

| void print_success | ( | const std::string & | message | ) |
Helper to print success message.
Definition at line 68 of file asio_integration_example.cpp.