Crate rw_cell

source ·
Expand description

§Rw Cell

rw_cell provides the ability to securely write data from one location of application and read it from another even if Writer and Reader located in different threads without copying/cloning and blocking access to data.

Modules§

  • Implements the pattern “single producer single consumer”
  • Implements the pattern “single producer multiple consumer”
  • Implements the pattern “multiple producer single consumer”