Expand description

threadpool-simple beta

Create threads and give them jobs very simply!

Example

struct ThreadPool {
    worker: Vec<Worker>,
    sender:  mpsc::Sender<Job>,

Using channels for sending/receiving jobs between threads