How to run task every N seconds? #308
-
Is your feature request related to a problem? Please describe. Describe the solution you'd like Describe alternatives you've considered Additional context |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Hello, you can try interval chains (jobs), e.g. |
Beta Was this translation helpful? Give feedback.
Hello, you can try interval chains (jobs), e.g.
@every 10 seconds
. Or you may consider using@after 10 seconds
if you want to wait for your previous job to be finished.