Module messaging_config

Source
Expand description

Configuration of Messaging Defines the configuration structure for the Inter-Process Communication (IPC) messaging system.

This module contains the MessagingConfig struct, which is used with serde to deserialize the [messaging] section from the application’s TOML configuration file. It holds parameters that control the behavior of the POSIX message queue listener.

This entire module is conditionally compiled and is only available on target_os = "linux" (or during tests), as it is part of the POSIX-based IPC mechanism.

Structs§

MessagingConfig
Holds the configuration data for the messaging. The configuration is loaded from the .toml configuration file. This struct does not contain any implementation.