| Crates.io | employees |
| lib.rs | employees |
| version | 0.1.0 |
| created_at | 2023-11-17 19:46:33.314799+00 |
| updated_at | 2024-09-23 15:40:53.027602+00 |
| description | A small runtime that hides all the boilerplate when using threads. |
| homepage | |
| repository | https://github.com/Caelmyn/employees |
| max_upload_size | |
| id | 1039450 |
| size | 101,898 |
employeesA small and lightweight crate to hide most of the burden of setting up long-living threads.
This crate sees threads as unique entities called workers which may (or may not) live as long as the program lives. Workers are spawned in Runtimes that manage them.
Here's a small example that spawns a worker that prints "Hello, World!" every 100ms for 1 second.
struct WorkerThatPrints;
impl Worker for WorkerThatPrints {
fn on_update(&mut self) -> ControlFlow {
println!("Hello, World!");
std::thread::sleep(Duration::from_millis(100));
ControlFlow::Continue
}
}
let mut runtime = Runtime::new();
runtime.launch(WorkerThatPrints);
std::thread::sleep(Duration::from_secs(1));
See the full documentation for more in depth details.
employees?employees is built with CPU-bound concurrency in mind.
"But wait, arent't async runtimes built for that purpose?" you might ask, and you'll be 100% right.
However, async has drawbacks which employees hasn't:
That said, there are usecases where async runtime will be better such as I/O bound tasks (web servers, ect.) or concurrent tasks on single threaded platforms.
Again, employees is built with concurrency in mind. While it is possible to build a work stealing thread pool from employees to parallelize some kind of computation, other crates such as rayon add a ton of utilities speficically made for that purpose which is why, for most paralellism usecases, rayon-like crates will be a better choice.
Licensed under the terms of MIT license. See LICENSE for details.