#broadcast-channel #channel #broadcast #mpmc #no-std

no-std blinkcast

Fast, bounded, multiple-producer, multiple-consumer, lossy, broadcast channel

3 unstable releases

0.2.0 Feb 22, 2024
0.1.1 Feb 22, 2024
0.1.0 Feb 21, 2024

#432 in Concurrency

Download history 287/week @ 2024-02-16 163/week @ 2024-02-23 29/week @ 2024-03-01 74/week @ 2024-03-08 19/week @ 2024-03-15 25/week @ 2024-03-22 102/week @ 2024-03-29 22/week @ 2024-04-05 17/week @ 2024-04-12

166 downloads per month

MIT license

44KB
753 lines

blinkcast

check codecov Crates.io blinkcast docs.rs blinkcast

Fast, Bounded, Lossy Rust broadcast channel with support for no_std targets.

Sometimes it may spin the CPU for a bit if there is a contention on a single element in the buffer for write and read operations. Could happen more often for small buffers.

This is implemented with ring buffer and atomic operations, it may be considered lock-free, as we don't use Lock premitive, but the implementation may spin waiting for a contending writer/reader to finish accessing a specific node. Its very rare, but maybe I won't call it lock-free in the strict sense.

The API of the blinkcast is similar to that of the std::sync::mpsc channels. However, there are some differences:

  • It allows for multiple consumers (receivers) and multiple prodocuers (senders).
  • The channel broadcasts every send to every consumer.
  • Lossy, the sender will overwrite old data, so receivers must be quick or they will lose the old data (don' t blink).
  • Implemented for no_std environments.

Due to that nature, this is useful in applications where data comes in very quick and new data is always more important than old data which can be discarded. This could be useful for example in implementing audio driver, where a small glitch but staying up to date is better than delayed audio.

See the documentation for examples.

Minimum Supported Rust Version (MSRV)

The minimum supported Rust version for this crate is 1.61.0

License

Licensed under MIT (LICENSE or http://opensource.org/licenses/MIT)

Dependencies

~0–27MB
~352K SLoC