schedule-rs
schedule-rs copied to clipboard
An in-process scheduler for periodic jobs. Schedule lets you run Rust functions on a cron-like schedule.
| Name | About | Title | Label | |-----------------|--------------------------------------------------------------------------------------------------|-------------------|---------| | Feature Request | Propose a change that introduces a new functionality that supports task scheduling with timezone | Time...
This would be useful for cases where you have integers and want to avoid the overhead of converting from integers to a string, then back to a `ChronScheduler`
The page [here](https://docs.rs/schedule/0.1.0/schedule/trait.Schedule.html) shows that `Schedule` has no implementors, even though it does in the upstream code.
I want to run a job every 10 seconds but "*/10 * * * * *" fails to parse.
I have an example below which schedules three functions / closures to run at the same time. However, they don't seem to run async. Is this by design ? Are...
Currently jobs are run manually (with a helper method to run all currently pending jobs). We should define an execution model. 1. Does it make sense to have more than...
I can only seem to run with nightly-2017-06-29 later versions give I think the issue is fixed in https://github.com/zslayton but not your local fork. error: use of unstable library feature...
Blocked by https://github.com/zslayton/cron/issues/22
It would be cool to do this: ``` #[schedule("0 * * * *")] fn task_hourly() { ... } ```
As per author: "Constant Delay; an extension I've seen that is neat is @every 1h to define a delayed task instead of a scheduled task"