[][src]Struct concread::cowcell::CowCell

pub struct CowCell<T> { /* fields omitted */ }

A conncurrently readable cell.

This structure behaves in a similar manner to a RwLock<T>. However unlike a RwLock, writes and parallel reads can be performed at the same time. This means readers and writers do no block either other. Writers are serialised.

To achieve this a form of "copy-on-write" (or for Rust, clone on write) is used. As a write transaction begins, we clone the existing data to a new location that is capable of being mutated.

Readers are guaranteed that the content of the CowCell will live as long as the read transaction is open, and will be consistent for the duration of the transaction. There can be an "unlimited" number of readers in parallel accessing different generations of data of the CowCell.

Writers are serialised and are guaranteed they have exclusive write access to the structure.

Examples

use concread::cowcell::CowCell;

let data: i64 = 0;
let cowcell = CowCell::new(data);

// Begin a read transaction
let read_txn = cowcell.read();
assert_eq!(*read_txn, 0);
{
    // Now create a write, and commit it.
    let mut write_txn = cowcell.write();
    *write_txn = 1;
    // Commit the change
    write_txn.commit();
}
// Show the previous generation still reads '0'
assert_eq!(*read_txn, 0);
let new_read_txn = cowcell.read();
// And a new read transaction has '1'
assert_eq!(*new_read_txn, 1);

Implementations

impl<T> CowCell<T> where
    T: Clone
[src]

pub fn new(data: T) -> Self[src]

Create a new CowCell for storing type T. T must implement Clone to enable clone-on-write.

pub fn read(&self) -> CowCellReadTxn<T>[src]

Begin a read transaction, returning a read guard. The content of the read guard is guaranteed to be consistent for the life time of the read - even if writers commit during.

pub fn write(&self) -> CowCellWriteTxn<'_, T>[src]

Begin a write transaction, returning a write guard. The content of the write is only visible to this thread, and is not visible to any reader until commit() is called.

pub fn try_write(&self) -> Option<CowCellWriteTxn<'_, T>>[src]

Attempt to create a write transaction. If it fails, and err is returned. On success the Ok(guard) is returned. See also write(&self)

Trait Implementations

impl<T: Debug> Debug for CowCell<T>[src]

Auto Trait Implementations

impl<T> !RefUnwindSafe for CowCell<T>

impl<T> Send for CowCell<T> where
    T: Send + Sync

impl<T> Sync for CowCell<T> where
    T: Send + Sync

impl<T> Unpin for CowCell<T>

impl<T> UnwindSafe for CowCell<T> where
    T: RefUnwindSafe

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,