10 releases (1 stable)

1.0.0 Dec 17, 2019
0.3.0 Nov 19, 2019
0.2.6 Sep 25, 2019
0.1.0 Sep 15, 2019

#985 in Asynchronous

Download history 508/week @ 2023-12-07 898/week @ 2023-12-14 789/week @ 2023-12-21 785/week @ 2023-12-28 765/week @ 2024-01-04 622/week @ 2024-01-11 782/week @ 2024-01-18 424/week @ 2024-01-25 451/week @ 2024-02-01 740/week @ 2024-02-08 669/week @ 2024-02-15 521/week @ 2024-02-22 581/week @ 2024-02-29 702/week @ 2024-03-07 502/week @ 2024-03-14 669/week @ 2024-03-21

2,542 downloads per month
Used in 17 crates (5 directly)

MIT/Apache

17KB
315 lines

broadcaster

broadcaster provides a wrapper for any Stream and Sink implementing the mpsc pattern to enable broadcasting items. This means that any item sent will be received by every receiver, not just the first to check (like most mpmc streams). As an example:

use broadcaster::BroadcastChannel;
use futures_util::StreamExt;

let mut chan = BroadcastChannel::new();
chan.send(&5i32).await?;
assert_eq!(chan.next().await, Some(5));

let mut chan2 = chan.clone();
chan2.send(&6i32).await?;
assert_eq!(chan.next().await, Some(6));
assert_eq!(chan2.next().await, Some(6));

lib.rs:

broadcaster provides a wrapper for any Stream and Sink implementing the mpsc pattern to enable broadcasting items. This means that any item sent will be received by every receiver, not just the first to check (like most mpmc streams). As an example:

use broadcaster::BroadcastChannel;

use futures_util::StreamExt;

let mut chan = BroadcastChannel::new();
chan.send(&5i32).await?;
assert_eq!(chan.next().await, Some(5));

let mut chan2 = chan.clone();
chan2.send(&6i32).await?;
assert_eq!(chan.next().await, Some(6));
assert_eq!(chan2.next().await, Some(6));

Dependencies

~0.6–1.1MB
~18K SLoC