Deadqueue Latest Version Build Status

Deadqueue is a dead simple async queue with back pressure support.

This crate provides three implementations:

Features

| Feature | Description | Extra dependencies | Default | | ------- | ----------- | ------------------ | ------- | | unlimited | Enable unlimited queue implementation | – | yes | | resizable | Enable resizable queue implementation | deadqueue/unlimited | yes | | limited | Enable limited queue implementation | – | yes |

Example

```rust use std::sync::Arc; use tokio::time::{sleep, Duration};

const TASKCOUNT: usize = 1000; const WORKERCOUNT: usize = 10;

type TaskQueue = deadqueue::limited::Queue;

[tokio::main]

async fn main() { let queue = Arc::new(TaskQueue::new(TASKCOUNT)); for i in 0..TASKCOUNT { queue.trypush(i).unwrap(); } for worker in 0..WORKERCOUNT { let queue = queue.clone(); tokio::spawn(async move { loop { let task = queue.pop().await; println!("worker[{}] processing task[{}] ...", worker, task); } }); } while queue.len() > 0 { println!("Waiting for workers to finish..."); sleep(Duration::from_millis(100)).await; } println!("All tasks done. :-)"); } ```

Reasons for yet another queue

Deadqueue is by no means the only queue implementation available. It does things a little different and provides features that other implementations are lacking:

Alternatives

| Crate | Limitations | Documentation | | --- | --- | --- | | tokio | No resizable queue. No introspection support. Synchronization of Receiver needed. | tokio::sync::mpsc::channel, tokio::sync::mpsc::unbounded_channel | | async-std | No resizable or unlimited queue. No introspection support. No try_send or try_recv methods. | async_std::sync::channel | | futures | No resizable queue. No introspection support. | futures::channel::mpsc::channel, futures::channel::mpsc::unbounded |

License

Licensed under either of

at your option.