#cron-expression #async-task #task-scheduler #cron #cron-job #job-scheduler #scheduler

async-cron-scheduler

Runtime-agnostic async task scheduler with cron expression support

2 stable releases

2.0.1 Jan 10, 2024
1.0.0 Apr 26, 2022

#198 in Asynchronous

Download history 22/week @ 2024-03-13 9/week @ 2024-03-27 8/week @ 2024-04-03 1/week @ 2024-04-10 14/week @ 2024-04-17 41/week @ 2024-04-24 15/week @ 2024-05-01 4/week @ 2024-05-08 8/week @ 2024-05-15 22/week @ 2024-05-22 69/week @ 2024-05-29 83/week @ 2024-06-05 40/week @ 2024-06-12 6/week @ 2024-06-19 109/week @ 2024-06-26

301 downloads per month

MPL-2.0 license

18KB
187 lines

async-cron-scheduler

Runtime-agnostic async task scheduler with cron expression support

  • Lightweight: Minimal dependencies because it does not rely on a runtime.
  • Efficient: Tickless design with no reference counters.
  • Runtime-Agnostic: Bring your own runtime. No runtime dependencies.
  • Async: A single future drives the entire scheduler service.
  • Task Scheduling: Schedule multiple jobs with varying timeframes between them.
  • Cron Expressions: Standardized format for scheduling syntax.

Demo

use chrono::offset::Local;
use async_cron_scheduler::*;
use smol::Timer;
use std::time::Duration;

smol::block_on(async move {
    // Creates a scheduler based on the Local timezone. Note that the `sched_service`
    // contains the background job as a future for the caller to decide how to await
    // it. When the scheduler is dropped, the scheduler service will exit as well.
    let (mut scheduler, sched_service) = Scheduler::<Local>::launch(Timer::after);

    // Creates a job which executes every 1 seconds.
    let job = Job::cron("1/1 * * * * *").unwrap();
    let fizz_id = scheduler.insert(job, |id| println!("Fizz")).await;

    // Creates a job which executes every 3 seconds.
    let job = Job::cron("1/3 * * * * *").unwrap();
    let buzz_id = scheduler.insert(job, |id| println!("Buzz")).await;

    // Creates a job which executes every 5 seconds.
    let job = Job::cron("1/5 * * * * *").unwrap();
    let bazz_id = scheduler.insert(job, |id| println!("Bazz")).await;

    // A future which gradually drops jobs from the scheduler.
    let dropper = async move {
        Timer::after(Duration::from_secs(7)).await;
        scheduler.remove(fizz_id).await;
        println!("Fizz gone");
        Timer::after(Duration::from_secs(5)).await;
        scheduler.remove(buzz_id).await;
        println!("Buzz gone");
        Timer::after(Duration::from_secs(1)).await;
        scheduler.remove(bazz_id).await;
        println!("Bazz gone");

        // `scheduler` is dropped here, which causes the sched_service to end.
    };

    // Poll the dropper and scheduler service concurrently until both return.
    futures::future::join(sched_service, dropper).await;
});

License

Licensed under the Mozilla Public License 2.0.

Contribution

Any contribution intentionally submitted for inclusion in the work by you shall be licensed under the Mozilla Public License 2.0 (MPL-2.0).

Dependencies

~3–28MB
~399K SLoC