Prioritised, parallel job scheduler with concurrent exclusion, job merging, recurring jobs and load limiting for lower priorities.
A job scheduler executes tasks on it's own thread or thread pool. This job scheduler is particularly designed to consider heavier weight or more expensive jobs, which likely have side effects. In this case it can be valuable to prioritise the jobs and merge alike jobs in the queue.
Features
crossbeam_channel::Sender<YourJob>
to send jobsFuture
s to get results from the jobs 2Limitations
Clone
(so they can be reproduced for recurring) and any results provided by a future need to implement Clone
(so that they can be merged).With cargo-edit
:
sh
cargo add gaffer
or in Cargo.toml
toml
[dependencies]
gaffer = "0.1"
Licensed under either of
at your option.
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.