[go: up one dir, main page]

tower-balance 0.3.0

Balance load across a set of uniform services.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! A Power-of-Two-Choices Load Balancer

mod layer;
mod make;
mod service;

#[cfg(test)]
mod test;

pub use layer::BalanceLayer;
pub use make::{BalanceMake, MakeFuture};
pub use service::Balance;