Struct ritemlcr::ConcurrentCache[][src]

pub struct ConcurrentCache { /* fields omitted */ }

A concurrent cache tracker.

This has two parts to it:

  • A normal cache tracker, protected by a lock.
  • A queue of cache operations that will be executed when the lock is acquired.

Implementations

impl ConcurrentCache[src]

pub fn new() -> ConcurrentCache[src]

Create a new concurrent cache tracker.

pub fn lock(&self) -> MutexGuard<'_, Cache>[src]

Lock the inner cache.

pub fn insert(&mut self, id: Id)[src]

Insert a new cache block.

pub fn remove(&mut self, id: Id)[src]

Remove a cache block.

pub fn touch(&mut self, id: Id)[src]

Touch a cache block.

Trait Implementations

impl Default for ConcurrentCache[src]

Auto Trait Implementations

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>,