aquarium_control/
dispatch.rs

1/* Copyright 2024 Uwe Martin
2
3Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
4
5The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
6
7THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
8*/
9
10/// Communication with the terminal user or webserver uses POSIX message queues.
11/// This is a platform-specific feature and hence uses conditional compilation.
12/// The communication is always initiated externally.
13/// The module processes the input and forwards it to the respective thread via the channel.
14/// The control application does not respond to any request sent to the message queue.
15pub mod messaging;
16
17/// Enum codifies the errors which the program may encounter in communication with the Linux messaging system.
18pub mod messaging_error;
19
20/// Container for channels
21pub mod messaging_channels;
22
23/// Definition of messaging domains including related functionality
24pub mod messaging_domain;
25
26/// Configuration of Messaging
27pub mod messaging_config;