Struct concread::ebrcell::EbrCell

source ·
pub struct EbrCell<T> { /* private fields */ }
Expand description

A concurrently readable cell.

This structure behaves in a similar manner to a RwLock<Box<T>>. However unlike a read-write lock, writes and parallel reads can be performed simultaneously. This means writes do not block reads or reads do not block writes.

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 EbrCell 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 EbrCell.

Data that is copied is garbage collected using the crossbeam-epoch library.

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

Examples

use concread::ebrcell::EbrCell;

let data: i64 = 0;
let ebrcell = EbrCell::new(data);

// Begin a read transaction
let read_txn = ebrcell.read();
assert_eq!(*read_txn, 0);
{
    // Now create a write, and commit it.
    let mut write_txn = ebrcell.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 = ebrcell.read();
// And a new read transaction has '1'
assert_eq!(*new_read_txn, 1);

Implementations

Create a new EbrCell storing type T. T must implement Clone.

Begin a write transaction, returning a write guard.

Attempt to begin a write transaction. If it’s already held, None is returned.

Begin a read transaction. The returned [`EbrCellReadTxn’] guarantees the data lives long enough via crossbeam’s Epoch type. When this is dropped the data may be freed at some point in the future.

Trait Implementations

Formats the value using the given formatter. Read more
Executes the destructor for this type. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.