Expand description
Lightweight coordination primitives with optional lock-free backend.
When built with the lockfree-coordination
feature, this module uses
crossbeam-channel
for MPMC lock-free channels. Otherwise it falls back
to std::sync::mpsc
unbounded channels.
Modulesยง
- chan
- Channel facade backed by
crossbeam-channel
when thelockfree-coordination
feature is enabled.