# Lock-free Bounded Non-Blocking Pub-Sub Queue

This is a publish subscribe pattern queue, where the publisher is never blocked by slow subscribers. The side effect is that slow subscribers will miss messages. The intended use-case are high throughput streams where receiving the latest message is prioritized over receiving the entire stream. Market Data Feeds, Live Streams, etc....

The underlying data-structure is a vector of Arc(s) eliminating the use of copies.

Features

Examples

Simple bare usage

```rust extern crate bus_queue;

use busqueue::barechannel;

fn main() { let (tx, rx) = barechannel(10); (1..15).foreach(|x| tx.broadcast(x).unwrap());

let received: Vec<i32> = rx.map(|x| *x).collect();
// Test that only the last 10 elements are in the received list.
let expected: Vec<i32> = (5..15).collect();

assert_eq!(expected, received);

} ```

Simple synchronous usage

```rust extern crate bus_queue;

use busqueue::sync; fn main() { // Create a sync channel let (mut tx, rx) = sync::channel(10); // spawn tx thread, broadcast all and drop publisher. let txt = std::thread::spawn(move || { (1..15).foreach(|x| tx.broadcast(x).unwrap()); }); // small sleep for the tx thread to send and close, before rx thread is called std::thread::sleep(std::time::Duration::frommillis(100));

// spawn rx thread to get all the items left in the buffer
let rx_t = std::thread::spawn(move || {
    let received: Vec<i32> = rx.map(|x| *x).collect();
    // Test that only the last 10 elements are in the received list.
    let expected: Vec<i32> = (5..15).collect();
    assert_eq!(received, expected);
});

tx_t.join().unwrap();
rx_t.join().unwrap();

} ```

Simple asynchronous usage

```rust extern crate bus_queue; extern crate futures; extern crate tokio;

use bus_queue::async; use futures::*; use tokio::runtime::Runtime;

fn main() { let mut rt = Runtime::new().unwrap(); let (tx, rx) = async::channel(10); let sent: Vec = (1..15).collect(); let publisher = stream::iterok(sent) .forward(tx) .andthen(|(, mut sink)| sink.close()) .maperr(|| ()) .map(|| ());

rt.spawn(publisher);

let received: Vec<i32> = rt.block_on(rx.map(|x| *x).collect()).unwrap();
// Test that only the last 10 elements are in the received list.
let expected: Vec<i32> = (5..15).collect();
assert_eq!(expected, received);

} ```