Crates.io | skedge |
lib.rs | skedge |
version | 0.3.0 |
source | src |
created_at | 2021-08-29 13:58:23.778114 |
updated_at | 2024-09-20 00:32:25.60246 |
description | Ergonomic single-process job scheduling for Rust programs. |
homepage | https://crates.io/crates/skedge |
repository | https://github.com/deciduously/skedge |
max_upload_size | |
id | 443749 |
size | 92,841 |
Rust single-process scheduling. Ported from schedule
for Python, in turn inspired by clockwork
(Ruby), and "Rethinking Cron" by Adam Wiggins.
Documentation can be found on docs.rs.
This library uses the Builder pattern to define jobs. Instantiate a fresh Scheduler
, then use the every()
and every_single()
functions to begin defining a job. Finalize configuration by calling Job::run()
to add the new job to the scheduler. The Scheduler::run_pending()
method is used to fire any jobs that have arrived at their next scheduled run time. Currently, precision can only be specified to the second, no smaller.
use jiff::{ToSpan, Zoned};
use skedge::{every, Scheduler};
use std::thread::sleep;
use std::time::Duration;
fn greet(name: &str) {
let now = Zoned::now();
println!("Hello {name}, it's {now}!");
}
fn main() -> Result<(), Box<dyn std::error::Error>> {
let mut schedule = Scheduler::new();
every(2)
.to(8)?
.seconds()?
.until(Zoned::now().checked_add(30.seconds()).unwrap())?
.run_one_arg(&mut schedule, greet, "Cool Person")?;
let now = Zoned::now();
println!("Starting at {now}");
loop {
if let Err(e) = schedule.run_pending() {
eprintln!("Error: {e}");
}
sleep(Duration::from_secs(1));
}
}
Check out the example script to see more configuration options. Try cargo run --example readme
or cargo run --example basic
to see it in action.
There is an experimental C foreign function interface, which is feature-gated and not included by default. To build the library with this feature, use cargo build --features ffi
. See the Makefile and examples/ffi/c directory for details on using this library from C. Execute make run
to build and execute the included example C program. It currently only supports work functions which take no arguments.
Clone this repo. See CONTRIBUTING.md
for contribution guidelines.
rustup
using the instructions at this link.