AtomicRingBuffer

Build Status License Cargo Documentation

A constant-size almost lock-free ring buffer

Upsides

Text +63----56+55----48+47------------32+31----24+23----16+15-------------0+ | w_done | w_pend | write_index | r_done | r_pend | read_index | +--------+--------+----------------+--------+--------+----------------+

Dependencies

This package has no dependencies

Usage

To use AtomicRingBuffer, add this to your Cargo.toml:

toml [dependencies] atomicring = "0.2.0"

And something like this to your code

```rust

// create an AtomicRingBuffer with capacity of 1024 elements let ring = ::atomicring::AtomicRingBuffer::new(900);

// trypop removes an element of the buffer and returns None if the buffer is empty asserteq!(None, ring.trypop()); // pushoverwrite adds an element to the buffer, overwriting the oldest element if the buffer is full: ring.pushoverwrite(1); asserteq!(Some(1), ring.trypop()); asserteq!(None, ring.try_pop()); ```

License

Licensed under the terms of MIT license and the Apache License (Version 2.0).

See LICENSE-MIT and LICENSE-APACHE for details.