pub struct RingBuffer<T, const N: usize> { /* private fields */ }Implementations§
Source§impl<T, const N: usize> RingBuffer<T, N>
impl<T, const N: usize> RingBuffer<T, N>
pub fn new() -> (RingBufferWriter<T, N>, RingBufferReader<T, N>)
👎Deprecated since 0.1.8: please use
init() instead.Sourcepub fn init() -> (RingBufferWriter<T, N>, RingBufferReader<T, N>)
pub fn init() -> (RingBufferWriter<T, N>, RingBufferReader<T, N>)
Examples found in repository?
examples/throughput.rs (line 7)
6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39
fn main() {
let (mut tx, mut rx) = RingBuffer::<usize, 16>::init();
let counter = Arc::new(AtomicUsize::new(0));
std::thread::spawn(move || {
let mut current: usize = 0;
loop {
if tx.push(current).is_none() {
current = current.wrapping_add(1);
} else {
std::thread::yield_now();
}
}
});
let c_counter = counter.clone();
std::thread::spawn(move || {
let mut current: usize = 0;
loop {
if let Some(c) = rx.pull() {
assert_eq!(c, current);
current = current.wrapping_add(1);
c_counter.fetch_add(1, Ordering::Relaxed);
} else {
std::thread::yield_now();
}
}
});
loop {
std::thread::sleep(Duration::from_secs(1));
println!("{} elem/s", counter.swap(0, Ordering::Relaxed));
}
}Trait Implementations§
Source§impl<T, const N: usize> Drop for RingBuffer<T, N>
impl<T, const N: usize> Drop for RingBuffer<T, N>
impl<T, const N: usize> Send for RingBuffer<T, N>
impl<T, const N: usize> Sync for RingBuffer<T, N>
Auto Trait Implementations§
impl<T, const N: usize> !Freeze for RingBuffer<T, N>
impl<T, const N: usize> !RefUnwindSafe for RingBuffer<T, N>
impl<T, const N: usize> Unpin for RingBuffer<T, N>where
T: Unpin,
impl<T, const N: usize> UnwindSafe for RingBuffer<T, N>where
T: UnwindSafe,
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more