pub trait AccessPeerStore {
    fn get_agent_arq(&self, agent: &AgentKey) -> Arq<DhtLocation>;
    fn get_arq_set(&self) -> ArqSetImpl<SpaceOffset>;
}
Expand description

All methods involved in accessing the peer store, to be implemented by the host.

Required Methods§

Get the arq for an agent

Get the set of all arqs for this node

Implementors§