Sign in
android
/
platform
/
external
/
rust
/
android-crates-io
/
b77a9ac09625d44550e00ccaa362b40f67cc448b
/
.
/
crates
/
tower
/
src
/
limit
/
concurrency
/
mod.rs
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
,
};