posixmq
A Rust library for working with posix message queues.
let mq = open?;
let mut buf = vec!;
loop
Supported operating systems
posixmq has been tested to work on Linux, FreeBSD, NetBSD, DragonFly and OmniOS, but not all features are available everywhere. See rustdoc for details.
*macOS, OpenBSD and Windows doesn't have posix message queues, and this crate will fail to compile there.
mio integration
On Linux, FreeBSD and DragonFly posix message queues can be registered with epoll / kqueue, and therefore used with mio. This feature is not enabled by default; enable it in Cargo.toml with:
[]
= {="0.2", =["mio"]}
Also remember to open the message queues in nonblocking mode.
Differences from posix_mq
send()andreceive()borrows byte slices instead of consuming and producing vectors, avoiding unnecessary allocations.- Supports deadlines / timeouts.
- Optionally integrates with
mio. - Is dual-licensed Apache-2.0 and MIT instead of only MIT.
Minimum Rust version
The minimum supported Rust version is 1.31.
License
Licensed under either of
- Apache License, Version 2.0, (LICENSE-APACHE or http://www.apache.org/licenses/LICENSE-2.0)
- MIT license (LICENSE-MIT or http://opensource.org/licenses/MIT)
at your option.
Contribution
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.