[][src]Struct grin_util::RateCounter

pub struct RateCounter { /* fields omitted */ }

A rate counter tracks the number of transfers, the amount of data exchanged and the rate of transfer (via a few timers) over the last minute. The counter does not try to be accurate and update times proactively, instead it only does so lazily. As a result, produced rates are worst-case estimates.

Methods

impl RateCounter[src]

pub fn new() -> RateCounter[src]

Instantiate a new rate counter

pub fn inc(&mut self, bytes: u64)[src]

Increments number of bytes transferred, updating counts and rates.

pub fn inc_quiet(&mut self, bytes: u64)[src]

Increments number of bytes without updating the count or rate. We filter out 0 last_min_times when calculating rate. Used during txhashset.zip download to track bytes downloaded without treating a peer as abusive (too high a rate of download).

pub fn bytes_per_min(&self) -> u64[src]

Number of bytes counted in the last minute. Includes "quiet" byte increments.

pub fn count_per_min(&self) -> u64[src]

Count of increases in the last minute. Excludes "quiet" byte increments.

Auto Trait Implementations

Blanket Implementations

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

impl<T> From<T> for 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<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Erased for T

impl<T> UnsafeAny for T where
    T: Any