Skip to main content

Module sync

Module sync 

Source
Expand description

Async synchronization primitives for single-threaded runtimes.

  • oneshot: single-value channel for one-shot communication between tasks
  • mpsc: bounded multi-producer, single-consumer channel with backpressure

Modulesยง

mpsc
Bounded multi-producer, single-consumer channel.
oneshot
Single-value, single-producer, single-consumer channel.