Trait libp2p_kad::record::store::RecordStore[][src]

pub trait RecordStore<'a> {
    type RecordsIter: Iterator<Item = Cow<'a, Record>>;
    type ProvidedIter: Iterator<Item = Cow<'a, ProviderRecord>>;
    fn get(&'a self, k: &Key) -> Option<Cow<'_, Record>>;
fn put(&'a mut self, r: Record) -> Result<()>;
fn remove(&'a mut self, k: &Key);
fn records(&'a self) -> Self::RecordsIter;
fn add_provider(&'a mut self, record: ProviderRecord) -> Result<()>;
fn providers(&'a self, key: &Key) -> Vec<ProviderRecord>;
fn provided(&'a self) -> Self::ProvidedIter;
fn remove_provider(&'a mut self, k: &Key, p: &PeerId); }
Expand description

Trait for types implementing a record store.

There are two types of records managed by a RecordStore:

  1. Regular (value-)records. These records store an arbitrary value associated with a key which is distributed to the closest nodes to the key in the Kademlia DHT as per the standard Kademlia “push-model”. These records are subject to re-replication and re-publication as per the standard Kademlia protocol.

  2. Provider records. These records associate the ID of a peer with a key who can supposedly provide the associated value. These records are mere “pointers” to the data which may be followed by contacting these providers to obtain the value. These records are specific to the libp2p Kademlia specification and realise a “pull-model” for distributed content. Just like a regular record, a provider record is distributed to the closest nodes to the key.

Associated Types

Required methods

Gets a record from the store, given its key.

Puts a record into the store.

Removes the record with the given key from the store.

Gets an iterator over all (value-) records currently stored.

Adds a provider record to the store.

A record store only needs to store a number of provider records for a key corresponding to the replication factor and should store those records whose providers are closest to the key.

Gets a copy of the stored provider records for the given key.

Gets an iterator over all stored provider records for which the node owning the store is itself the provider.

Removes a provider record from the store.

Implementors