blob: ac0be8a536bd46bca820343f8b4c3e5f4e407943 [file] [log] [blame]
//! Limit the max number of requests being concurrently processed.
pub mod future;
mod layer;
mod service;
pub use self::{
layer::{ConcurrencyLimitLayer, GlobalConcurrencyLimitLayer},
service::ConcurrencyLimit,
};