#thread-pool #jobs #create #parallel #run #multiple #connection

thrdpool

创建一个线程池以并行运行多个任务

1 个不稳定版本

0.1.0 2022年10月18日

#75#jobs

MIT/Apache

3KB

ThreadPool

一个简单的用于在线程池中运行多个任务的包

    // you can handle 4 connections !!!!!!
    let pool = ThreadPool::new(4);
    for stream in listener.incoming() {
        let stream = stream.unwrap();
        pool.execute(|| {
            handle_connection(stream);
            println!("Connection handled!");
        })
    }

无运行时依赖