1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
// Copyright 2019 TiKV Project Authors. Licensed under Apache-2.0.

#![warn(missing_docs)]

//! Yatp is a thread pool that tries to be adaptive, responsive and generic.

pub mod metrics;
pub mod pool;
pub mod queue;
pub mod task;

pub use self::pool::{Builder, Remote, ThreadPool};