From 4c9568a9dc9bbbae060d3790b696ca4bb91620a3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Erik=20Nordstr=C3=B8m?= Date: Sat, 22 Feb 2025 19:21:27 +0100 Subject: [PATCH] Add bin using crate cron_job. --- src/bin/using-crate-cron_job.rs | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 src/bin/using-crate-cron_job.rs diff --git a/src/bin/using-crate-cron_job.rs b/src/bin/using-crate-cron_job.rs new file mode 100644 index 0000000..186a78c --- /dev/null +++ b/src/bin/using-crate-cron_job.rs @@ -0,0 +1,32 @@ +use cron_job::{CronJob, Job}; + +fn main() { + // Create HelloJob + let hello_job = HelloJob { + name: "John".into(), + }; + // Create CronJob + let mut cron = CronJob::default(); + // Run function every second + cron.new_job("* * * * * *", run_every_second); + // Say hello every second + cron.new_job("* * * * * *", hello_job); + // Start jobs + cron.start().expect("Failed start jobs."); +} +// The function to be executed every second. +fn run_every_second() { + println!("1 second"); +} + +// The job to be executed +struct HelloJob { + name: String, +} + +// Very important, implement the Job trait and its functions. +impl Job for HelloJob { + fn run(&mut self) { + println!("Hello, {}!", self.name); + } +}