congestion-limiter 0.1.0

Dynamic congestion-based concurrency limits for controlling backpressure
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Dynamic congestion-based concurrency limits for controlling backpressure.

#![deny(missing_docs)]

#[cfg(doctest)]
use doc_comment::doctest;
#[cfg(doctest)]
doctest!("../README.md");

pub mod aggregation;
pub mod limiter;
pub mod limits;
mod moving_avg;