mesocarp 0.8.2

High-performance concurrency, synchronization, scheduling, and logging primitives in Rust
Documentation
1
2
3
4
5
6
7
8
//! Single-producer, multi-consumer (SPMC) and single-producer, single-consumer (SPSC) channels.
//!
//! This module provides lock-free communication primitives for different producer-consumer
//! patterns. Currently, the `spsc` submodule contains a buffer wheel, while `spmc` provides a broadcast-subscribe
//! channel, as well as a work queue channel.
pub mod mailbox;
pub mod spmc;
pub mod spsc;