8 releases
| 0.4.2 | Jan 7, 2025 |
|---|---|
| 0.3.4 | Jun 26, 2024 |
| 0.3.1 | Oct 15, 2023 |
| 0.2.4 | Jul 25, 2023 |
| 0.2.3 | Apr 20, 2023 |
#2756 in Rust patterns
432 downloads per month
63KB
1.5K
SLoC
sod-bus
sod::MutService implementations to interact with bus::Bus.
Service Impls
BusBroadcasterbroadcasts to abus::Busand blocks until the operation is successful.BusTryBroadcastertries to broadcast to abus::Busand is able to be retried viasod::RetryServicewhen the bus buffer is full.BusReceiverreceives from abus::BusReader, blocking until an element is received.BusTryReceivertries to receive from abus::BusReaderand is able to be retried viasod::RetryServicewhen the bus is empty.
Example
use sod::MutService;
use sod_bus::{BusBroadcaster, BusReceiver};
let mut broadcaster = BusBroadcaster::with_len(1024);
let mut receiver1 = broadcaster.create_receiver();
let mut receiver2 = broadcaster.create_receiver();
broadcaster.process(1).unwrap();
broadcaster.process(2).unwrap();
broadcaster.process(3).unwrap();
assert_eq!(receiver1.process(()).unwrap(), 1);
assert_eq!(receiver1.process(()).unwrap(), 2);
assert_eq!(receiver1.process(()).unwrap(), 3);
assert_eq!(receiver2.process(()).unwrap(), 1);
assert_eq!(receiver2.process(()).unwrap(), 2);
assert_eq!(receiver2.process(()).unwrap(), 3);
Dependencies
~0.6–1.2MB
~25K SLoC