#tokio #intervals #timing #async-task #timestamp #waiting #min

async_timing_util

tokio async functions for waiting until even intervals (on 1 min, 5 min, 30 min, etc), or waiting until a specified timestamp

16 releases (1 stable)

1.0.0 Jul 3, 2024
0.1.14 Jan 18, 2023
0.1.12 Dec 11, 2022
0.1.11 Nov 1, 2022
0.1.2 Sep 19, 2022

#1160 in Asynchronous

Download history 37/week @ 2024-09-18 91/week @ 2024-09-25 110/week @ 2024-10-02 107/week @ 2024-10-09 101/week @ 2024-10-16 75/week @ 2024-10-23 78/week @ 2024-10-30 36/week @ 2024-11-06 28/week @ 2024-11-13 78/week @ 2024-11-20 39/week @ 2024-11-27 37/week @ 2024-12-04 33/week @ 2024-12-11 28/week @ 2024-12-18 12/week @ 2025-01-01

83 downloads per month
Used in 8 crates (6 directly)

MIT license

8KB
163 lines

Async Timing Util

Convenient utilities for doing repeated tasks at precise intervals.

use async_timing_util::{Timelength, wait_until_timelength};

loop {
    let ts = wait_until_timelength(Timelength::OneHour, 0).await;
    /// Do something async every hour, on the hour.
		/// Runs at 00:00, 01:00, 02:00, etc.
}

lib.rs:

Async Timing Util

Convenient utilities for doing repeated tasks at precise intervals.

use async_timing_util::{Timelength, wait_until_timelength};

loop {
    let ts = wait_until_timelength(Timelength::OneHour).await;
    /// Do something async every hour, on the hour
    /// Runs at 00:00, 01:00, 02:00, etc.
}

Dependencies

~2.4–8.5MB
~69K SLoC