#thread-pool #worker-thread #basic

bin+lib std-threadpool

线程池实现

1 个不稳定版本

0.1.0 2024年1月6日

#998并发

MIT 许可证

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();

访问 https://docs.rs/std-threadpool/


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!");
});

无运行时依赖