14 releases (9 breaking)
0.10.0 | Aug 27, 2024 |
---|---|
0.9.0 | Jul 1, 2024 |
0.8.0 | May 17, 2024 |
0.7.0 | Mar 1, 2024 |
0.2.0-beta.0 | Feb 3, 2023 |
#3 in #canister
38,068 downloads per month
Used in 13 crates
(12 directly)
175KB
2.5K
SLoC
Rust CDK Timers Library
This crate provides a library to schedule multiple and periodic tasks on the Internet Computer.
Example
In Cargo.toml
:
[dependencies]
ic-cdk-timers = "0.9.0"
To schedule a one-shot task to be executed 1s later:
ic_cdk_timers::set_timer(Duration::from_secs(1), || ic_cdk::println!("Hello from the future!"));
References
- Internet Computer Developer Guide: Periodic Tasks and Timers
- Example: Periodic Tasks and Timers (compares timers and heartbeats).
Dependencies
~2–9.5MB
~94K SLoC