tower 0.4.4

Tower is a library of modular and reusable components for building robust clients and servers.
Documentation
1
2
3
4
5
6
7
//! Limit the max number of requests being concurrently processed.

pub mod future;
mod layer;
mod service;

pub use self::{layer::ConcurrencyLimitLayer, service::ConcurrencyLimit};