-
-
Notifications
You must be signed in to change notification settings - Fork 314
New issue
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
Feature: RunAll by tag #143
Comments
How about we had a function similar to run all with delay? |
Yes, RunByTagWithDelay(time.Duration, tag) would work. However, I'm in setting up a scheduler, I've noticed that scheduler.StartAsync() runs all the jobs immediately, and then on schedule. i.e.
Executes the jobs and then every 5 minutes post the StartAsync. Is this by design? |
correct - by design all jobs are run once the scheduler is started. |
@bobmcallan we added support in the form of two new methods:
Checkout #149 for more details. We'll get it released soon. |
This is out in release v1.2.0 |
At program startup, it is common to execute a job then enter the schedule. It would be great to execute a selection of jobs (by tag?) at startup.
`
`
The text was updated successfully, but these errors were encountered: