scatto 0.2.0

scatto - low-latency messaging primitives
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! common utilities shared across channel implementations.
//!
//! this module contains performance-critical helper functions reused across
//! SPSC and MPSC implementations. all functions are designed for zero-cost
//! abstraction with aggressive inlining.
//!
//! # modules
//!
//! - [`backoff`]: progressive backoff for spin-wait loops
//! - [`disconnect`]: cached disconnection detection

pub mod backoff;

#[allow(dead_code)]
pub mod disconnect;

pub use backoff::wait_backoff;