We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
sometime it is nice to run a command which is importend to complete, but the next run should not be to wide in the future.
it would be nice, that this command does not cancle on timeout, and the next run should be the interval time after the command complete time.
could we got a flag/option for it? (like --no-timeout) I like that there is also a timeout option ...
The text was updated successfully, but these errors were encountered:
Rust async library tokio has a flexible scheduling system we can reference: https://docs.rs/tokio/latest/tokio/time/enum.MissedTickBehavior.html
We can reference these three modes for scheduling.
What you described will be MissedTickBehavior::Delay.
MissedTickBehavior::Delay
Sorry, something went wrong.
No branches or pull requests
sometime it is nice to run a command which is importend to complete, but the next run should not be to wide in the future.
it would be nice, that this command does not cancle on timeout, and the next run should be the interval time after the command complete time.
could we got a flag/option for it? (like --no-timeout)
I like that there is also a timeout option ...
The text was updated successfully, but these errors were encountered: