Struct evmap::WriteHandle [] [src]

pub struct WriteHandle<K, V, M = (), S = RandomState> where K: Eq + Hash,
        S: BuildHasher
{ /* fields omitted */ }

A handle that may be used to modify the eventually consistent map.

Note that any changes made to the map will not be made visible to readers until refresh() is called.

Examples

let x = ('x', 42);

let (r, mut w) = evmap::new();

// the map is uninitialized, so all lookups should return None
assert_eq!(r.get_and(&x.0, |rs| rs.len()), None);

w.refresh();

// after the first refresh, it is empty, but ready
assert_eq!(r.get_and(&x.0, |rs| rs.len()), None);

w.insert(x.0, x);

// it is empty even after an add (we haven't refresh yet)
assert_eq!(r.get_and(&x.0, |rs| rs.len()), None);

w.refresh();

// but after the swap, the record is there!
assert_eq!(r.get_and(&x.0, |rs| rs.len()), Some(1));
assert_eq!(r.get_and(&x.0, |rs| rs.iter().any(|v| v.0 == x.0 && v.1 == x.1)), Some(true));

Methods

impl<K, V, M, S> WriteHandle<K, V, M, S> where K: Eq + Hash + Clone,
        S: BuildHasher + Clone,
        V: Eq + Clone,
        M: 'static + Clone
[src]

Refresh the handle used by readers so that pending writes are made visible.

This method needs to wait for all readers to move to the new handle so that it can replay the operational log onto the stale map copy the readers used to use. This can take some time, especially if readers are executing slow operations, or if there are many of them.

Set the metadata.

Will only be visible to readers after the next call to refresh().

Add the given value to the value-set of the given key.

The updated value-set will only be visible to readers after the next call to refresh().

Replace the value-set of the given key with the given value.

The new value will only be visible to readers after the next call to refresh().

Remove the given value from the value-set of the given key.

The updated value-set will only be visible to readers after the next call to refresh().

Remove the value-set for the given key.

The value-set will only disappear from readers after the next call to refresh().

Methods from Deref<Target=ReadHandle<K, V, M, S>>

Returns the number of non-empty keys present in the map.

Returns true if the map contains no elements.

Get the current meta value.

Applies a function to the values corresponding to the key, and returns the result.

The key may be any borrowed form of the map's key type, but Hash and Eq on the borrowed form must match those for the key type.

Note that not all writes will be included with this read -- only those that have been refreshed by the writer. If no refresh has happened, this function returns None.

If no values exist for the given key, the function will not be called, and None will be returned.

Applies a function to the values corresponding to the key, and returns the result alongside the meta information.

The key may be any borrowed form of the map's key type, but Hash and Eq on the borrowed form must match those for the key type.

Note that not all writes will be included with this read -- only those that have been refreshed by the writer. If no refresh has happened, this function returns None.

If no values exist for the given key, the function will still be passed an empty list, and Some will be returned.

Returns true if the map contains any values for the specified key.

The key may be any borrowed form of the map's key type, but Hash and Eq on the borrowed form must match those for the key type.

Read all values in the map, and transform them into a new collection.

Be careful with this function! While the iteration is ongoing, any writer that tries to refresh will block waiting on this reader to finish.

Read all values in the map, and transform them into a new collection.

Trait Implementations

impl<K, V, M, S> Extend<(K, V)> for WriteHandle<K, V, M, S> where K: Eq + Hash + Clone,
        S: BuildHasher + Clone,
        V: Eq + Clone,
        M: 'static + Clone
[src]

Extends a collection with the contents of an iterator. Read more

impl<K, V, M, S> Deref for WriteHandle<K, V, M, S> where K: Eq + Hash + Clone,
        S: BuildHasher + Clone,
        V: Eq + Clone,
        M: 'static + Clone
[src]

The resulting type after dereferencing

The method called to dereference a value