1 个不稳定版本
0.1.0 | 2024年1月6日 |
---|
#998 在 并发
4KB
66 行
使用rust book中的部分代码实现的基本线程池。
基本用法
//create a new thread pool with the specified number of threads
let workers: ThreadPool = ThreadPool::new(4);
//execute a closure from the thread pool
workers.execute(|| {
println!("Hello from a worker thread!");
}).unwrap();
lib.rs
:
使用rust book中的部分代码实现的基本线程池。
基本用法
//create a new thread pool with the specified number of threads
let workers: ThreadPool = ThreadPool::new(4);
//execute a closure from the thread pool
workers.execute(|| {
println!("Hello from a worker thread!");
});