#cell #arc #sync

arc-cell

Helper for a simple Cell-like object containing Arc/Weak

12 releases

0.3.3 Mar 23, 2022
0.3.1 Mar 15, 2022
0.2.2 Mar 12, 2022
0.1.5 Dec 12, 2016

#390 in Concurrency

Download history 406/week @ 2024-01-10 386/week @ 2024-01-17 374/week @ 2024-01-24 319/week @ 2024-01-31 335/week @ 2024-02-07 104/week @ 2024-02-14 355/week @ 2024-02-21 320/week @ 2024-02-28 24/week @ 2024-03-06 23/week @ 2024-03-13 439/week @ 2024-03-20 944/week @ 2024-03-27 593/week @ 2024-04-03 302/week @ 2024-04-10 769/week @ 2024-04-17 1743/week @ 2024-04-24

3,515 downloads per month

MIT license

11KB
222 lines

arc-cell

Documentation

A simple library for a concurrent Cell-like object containing an Arc/Weak reference.

[dependencies]
arc-cell = "0.3"

Usage

Lightweight swappable Arc member

use std::sync::Arc;
use arc_cell::ArcCell;

pub struct Thing {
    data: ArcCell<Vec<u8>>,
}

impl Thing {
    pub fn update(&self, data: Arc<Vec<u8>>) {
        self.data.set(data);
    }
}

Self-referencial structure

use std::sync::Arc;
use arc_cell::WeakCell;

pub struct Thing {
    self_ref: WeakCell<Thing>,
    // ...
}

impl Thing {
    pub fn new() -> Arc<Thing> {
        let thing = Arc::new(Thing {
            self_ref: WeakCell::empty(),
        });
        
        thing.self_ref.store(&thing);
        thing
    }
    
    pub fn clone_ref(&self) -> Arc<Thing> {
        self.self_ref.upgrade().expect("This should be valid if we have a valid self")
    }
}

No runtime deps

Features