5 releases (3 breaking)
0.4.1 | Sep 24, 2022 |
---|---|
0.4.0 | Sep 14, 2022 |
0.3.0 | Sep 11, 2022 |
0.2.0 | Sep 10, 2022 |
0.1.0 | Sep 7, 2022 |
#30 in #dispatch
10KB
112 lines
job-dispatcher
Rust crate to execute jobs/tasks in an async way
Example:-
use job_dispatcher::job::Job;
#[tokio::main]
async fn main() {
let path = "C:\\Users\\sn99\\Downloads\\privacy-script.bat";
let mut job = Job::new("trash", path);
// start a job
job.start();
// check is the job is done (does not block)
println!("Job done?: {:?}", job.try_wait());
// wait for it to finish (will block), will error out if previous statement returns `Ok`, use `match` to handle them
job.wait().await.expect("Job failed");
println!("Job exited with code: {:?}", job.get_status());
}
LICENSE
- MIT license (LICENSE or http://opensource.org/licenses/MIT)
Contribution
MIT licensed. Contributions are welcome!
Dependencies
~2–11MB
~96K SLoC