12 个版本
0.3.6 | 2023年1月16日 |
---|---|
0.3.5 | 2023年1月13日 |
0.3.4 | 2022年10月14日 |
0.3.2 | 2022年7月9日 |
0.1.2 | 2022年5月23日 |
#151 在 日期和时间
57 每月下载量
在 custom-utils 中使用
61KB
1.5K SLoC
timer-util
一个简单的计算时间的工具:易于配置,易于使用。一个简单的示例
use std::time::Duration;
use time::OffsetDateTime;
use timer_util::*;
#[tokio::main]
async fn main() -> anyhow::Result<()> {
// 定时器配置(timer configs):
// every weekday or 1st..10st 15st..25st every month 每周六 或者每月的1号到9号、15号到24号
// every hour 每小时
// 0st/10st/20st/30st/40st/50st minuter 第0/10/20/30/40/50分钟
// 0st/30st second 第0/30秒
let conf = DayHourMinuterSecondConf::default_week_days(WeekDays::default_value(W6))
.conf_month_days(MonthDays::default_range(D1..D10)?.add_range(D15..D25)?)
.build_with_hours(Hours::default_all())
.build_with_minuter(Minuters::default_array(&[M0, M10, M20, M30, M40, M50]))
.build_with_second(Seconds::default_array(&[S0, S30]));
// let next_seconds = conf.next()?;
let handle = tokio::spawn(async move {
loop {
let off_seconds = conf.next().unwrap();
println!("next seconds: {}", off_seconds);
tokio::time::sleep(Duration::from_secs(off_seconds)).await;
// println!("{:?}", OffsetDateTime::now_local().unwrap());
}
});
handle.await.unwrap();
Ok(())
}
依赖项
~1.5MB
~22K SLoC