# 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

fn main() { let (mut tx,rx) = bare_channel(1);

tx.broadcast(4).unwrap();
assert_eq!(4,*rx.try_recv().unwrap());

} ## Simple synchronous usage extern crate bus_queue;

use busqueue::sync; use std::thread; fn main() { // Create a sync channel let (mut tx, rx) = sync::channel(1); let t = thread::spawn(move|| { let received = rx.recv().unwrap(); asserteq!(*received, 10); }); tx.broadcast(10).unwrap(); t.join().unwrap(); } ## Simple asynchronous usage extern crate bus_queue; extern crate futures; extern crate tokio;

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

fn subscriber(rx: async::Subscriber) -> impl Future

fn main() { let mut rt = Runtime::new().unwrap(); let (tx, rx): (async::Publisher, async::Subscriber) = async::channel(10);

 let publisher = stream::iter_ok(vec![1, 2, 3, 3, 5])
     .forward(tx)
     .and_then(|(_, mut sink)| sink.close())
     .map_err(|_| ())
     .map(|_| ());

 rt.spawn(publisher);
 rt.block_on(subscriber(rx)).unwrap();

} ```