Flow-IPC 1.0.0
Flow-IPC project: Full implementation reference.
|
#include "ipc/transport/struc/struc_fwd.hpp"
Go to the source code of this file.
Classes | |
class | ipc::transport::struc::Channel_base |
Channel base that contains non-parameterized public items such as tag types and constants. More... | |
struct | ipc::transport::struc::Channel_base::Serialize_via_heap |
Tag type for ctor selection: Backing memory for serialization comes from fixed-size segment allocation(s) from regular heap (malloc() ); and similarly for deserialization. More... | |
struct | ipc::transport::struc::Channel_base::Serialize_via_session_shm |
Tag type for ctor selection: Backing RAM for serialization comes from a given session::Session's SHM arena (of per-session scope) via exponential-growing-size segment allocation(s). More... | |
struct | ipc::transport::struc::Channel_base::Serialize_via_app_shm |
Similar to Serialize_via_session_shm but assumes per-app-scope SHM-arena (as opposed to per-session-scope) at compile time. More... | |
Namespaces | |
namespace | ipc |
Catch-all namespace for the Flow-IPC project: A library/API in modern C++17 providing high-performance communication between processes. | |
namespace | ipc::transport |
Flow-IPC module providing transmission of structured messages and/or low-level blobs (and more) between pairs of processes. | |
namespace | ipc::transport::struc |
Sub-module of Flow-IPC module ipc::transport providing transmission of structured messages specifically. | |