cloudtoid-interprocess 3.0.0

Fast cross-language shared-memory queues with process crash recovery
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
#[cfg(unix)]
mod unix;
#[cfg(unix)]
pub(crate) use unix::*;

#[cfg(windows)]
mod windows;
#[cfg(windows)]
pub(crate) use windows::*;

#[cfg(not(any(windows, target_os = "linux", target_os = "macos")))]
compile_error!("Supported platforms are Windows, Linux, and macOS");