4 个版本
0.1.1 | 2022年1月26日 |
---|---|
0.1.0 | 2021年1月31日 |
0.0.2 | 2020年11月11日 |
0.0.1 | 2020年10月29日 |
在 #scheduling 中排名第 33
每月下载 21 次
16KB
343 行代码(不含注释)
schedule-rs
一个简单的调度库,灵感来源于 Python 的 schedule
。
示例用法
use schedule_rs::prelude::*;
fn main() {
let function = || {
println!("Hello World!");
};
let task = Schedule::every().minute().run(function);
TaskRunner::one(task).run();
std::thread::park();
}
lib.rs
:
schedule-rs
一个简单的调度库,灵感来源于 Python 的 schedule
。
示例用法
use schedule_rs::prelude::*;
let function = || {
println!("Hello World!");
};
let task = Schedule::every().minute().run(function);
TaskRunner::one(task).run();
std::thread::park();
依赖
~1MB
~18K SLoC