1 2 3 4 5 6 7 8 9 10
//! Limit the max number of requests being concurrently processed.
pub mod future;
mod layer;
mod service;
pub use self::{
layer::{ConcurrencyLimitLayer, GlobalConcurrencyLimitLayer},
service::ConcurrencyLimit,
};
1 2 3 4 5 6 7 8 9 10
//! Limit the max number of requests being concurrently processed.
pub mod future;
mod layer;
mod service;
pub use self::{
layer::{ConcurrencyLimitLayer, GlobalConcurrencyLimitLayer},
service::ConcurrencyLimit,
};