Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there a library for single producer multiple consumers channel? [closed]

Tags:

rust

The channel for multiple producers and single consumer is in the rust standard library: std::sync::mpsc - Rust

Is there a library for single producer multiple consumers channel somewhere?

Thanks!

like image 505
hnakamur Avatar asked Nov 01 '22 00:11

hnakamur


1 Answers

I found viperscape/oyashio in reddit threads below:

  • Rust Pipelining Patterns : rust
  • First steps for a pipeline model in Rust : rust
like image 150
hnakamur Avatar answered Nov 23 '22 22:11

hnakamur