11 lines
224 B
Rust
11 lines
224 B
Rust
//! Limit the max number of requests being concurrently processed.
|
|
|
|
pub mod future;
|
|
mod layer;
|
|
mod service;
|
|
|
|
pub use self::{
|
|
layer::{ConcurrencyLimitLayer, GlobalConcurrencyLimitLayer},
|
|
service::ConcurrencyLimit,
|
|
};
|