#thread-pool #programming-language #study

libpool

A simple threadpool from The Rust Programming Language

1 unstable release

0.1.0 Aug 20, 2019

#1426 in Asynchronous

MIT/Apache

7KB
81 lines

libpool-rs Build Status

This libpool project from TheRustProgrammingLanguageBook is for study.

Usage

Add dependencies

[dependencies]
libpool = "0.1.0"
extern crate libpool;
use libpool::*;

fn main() {
    ThreadPool::new(5).execute(move ||{
    });
}

No runtime deps