flâneur — a map of the web's best reading

std::sync::mpsc - Rust

doc.rust-lang.org · 785 words · saved by 1 readers

Multi-producer, single-consumer FIFO queue communication primitives.

std::sync::mpsc - Rust Skip to main content This old browser is unsupported and will most likely display funky things. Module mpsc std :: sync Module mpsc Copy item path 1.0.0 · Source Expand description Multi-producer, single-consumer FIFO queue communication primitives. This module provides message-based communication over channels, concretely defined among three types: Sender SyncSender Receiver A Sender or SyncSender is used to send data to a Receiver . Both senders are clone-able (multi-producer) such that many threads can send simultaneously to one receiver (single-consumer). These chann

Explore this link on the map →

related reading