[][src]Struct solana_core::crds_gossip::CrdsGossip

pub struct CrdsGossip {
    pub crds: Crds,
    pub id: Pubkey,
    pub shred_version: u16,
    pub push: CrdsGossipPush,
    pub pull: CrdsGossipPull,
}

Fields

crds: Crdsid: Pubkeyshred_version: u16push: CrdsGossipPushpull: CrdsGossipPull

Implementations

impl CrdsGossip[src]

pub fn set_self(&mut self, id: &Pubkey)[src]

pub fn set_shred_version(&mut self, shred_version: u16)[src]

pub fn process_push_message(
    &mut self,
    from: &Pubkey,
    values: Vec<CrdsValue>,
    now: u64
) -> Vec<VersionedCrdsValue>
[src]

process a push message to the network

pub fn prune_received_cache(
    &mut self,
    labels: Vec<CrdsValueLabel>,
    stakes: &HashMap<Pubkey, u64>
) -> HashMap<Pubkey, HashSet<Pubkey>>
[src]

remove redundant paths in the network

pub fn new_push_messages(
    &mut self,
    now: u64
) -> (Pubkey, HashMap<Pubkey, Vec<CrdsValue>>)
[src]

pub fn process_prune_msg(
    &mut self,
    peer: &Pubkey,
    destination: &Pubkey,
    origin: &[Pubkey],
    wallclock: u64,
    now: u64
) -> Result<(), CrdsGossipError>
[src]

add the from to the peer's filter of nodes

pub fn refresh_push_active_set(&mut self, stakes: &HashMap<Pubkey, u64>)[src]

refresh the push active set

  • ratio - number of actives to rotate

pub fn new_pull_request(
    &self,
    now: u64,
    stakes: &HashMap<Pubkey, u64>,
    bloom_size: usize
) -> Result<(Pubkey, Vec<CrdsFilter>, CrdsValue), CrdsGossipError>
[src]

generate a random request

pub fn mark_pull_request_creation_time(&mut self, from: &Pubkey, now: u64)[src]

time when a request to from was initiated This is used for weighted random selection during new_pull_request It's important to use the local nodes request creation time as the weight instead of the response received time otherwise failed nodes will increase their weight.

pub fn process_pull_requests(
    &mut self,
    filters: Vec<(CrdsValue, CrdsFilter)>,
    now: u64
)
[src]

process a pull request and create a response

pub fn generate_pull_responses(
    &self,
    filters: &[(CrdsValue, CrdsFilter)]
) -> Vec<Vec<CrdsValue>>
[src]

pub fn filter_pull_responses(
    &self,
    timeouts: &HashMap<Pubkey, u64>,
    response: Vec<CrdsValue>,
    now: u64,
    process_pull_stats: &mut ProcessPullStats
) -> (Vec<VersionedCrdsValue>, Vec<VersionedCrdsValue>)
[src]

pub fn process_pull_responses(
    &mut self,
    from: &Pubkey,
    responses: Vec<VersionedCrdsValue>,
    responses_expired_timeout: Vec<VersionedCrdsValue>,
    now: u64,
    process_pull_stats: &mut ProcessPullStats
)
[src]

process a pull response

pub fn make_timeouts_test(&self) -> HashMap<Pubkey, u64>[src]

pub fn make_timeouts(
    &self,
    stakes: &HashMap<Pubkey, u64>,
    epoch_ms: u64
) -> HashMap<Pubkey, u64>
[src]

pub fn purge(&mut self, now: u64, timeouts: &HashMap<Pubkey, u64>) -> usize[src]

Trait Implementations

impl Clone for CrdsGossip[src]

impl Default for CrdsGossip[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> Clear for T where
    T: InitializableFromZeroed + ?Sized

impl<T> From<T> for T[src]

impl<T> InitializableFromZeroed for T where
    T: Default

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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<T> Typeable for T where
    T: Any

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,