[][src]Crate uvth

uvth is a library that provides a efficient threadpool as an alternative to the threadpool crate.

uvth is more efficient and has less overhead than the threadpool crate. Benchmarks can be found in the README.

Structs

Stats
ThreadPool

A somewhat basic but efficient implementation of a threadpool. A threadpool is a classic primitive for parallel computation. It manages a set of worker threads that you can spawn tasks on. The pool manages scheduling of those tasks so you don't have to think about it.

ThreadPoolBuilder

A factory for configuring and creating a ThreadPool.