You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I love fluentScheduler and how everything works well for what I'm using it for with scheduling certain tasks to run in c# so thanks for that!
I have 2 questions.
Is this code still active and is it actively being developed?
Is there a way, to schedule a method to run every weekday at say 9 AM and run every hour in that day between 9 AM and 8 PM?
This is my current code setup so far which works but I need to take it a step further and not sure how:
JobManager.AddJob(() => LabResultsEcomUpdater(1), (s) => s.ToRunOnceAt(09,00).AndEvery(1).Hours().Between(09, 00, 20, 00));
would this stop the code running after 8PM or would it start up again the next day, and how would i modify it to run every week day at 9 AM and every hour between 09 and 20 and making sure it starts up again the next day?
Thanks for the awesome code base! :)
-Joshua
The text was updated successfully, but these errors were encountered:
you should be able to define it as a cron expression... https://crontab.guru/#0_8-21_*_*_1-5
was my idea, but i am stupid, so there is probably a better way to get it to the every h... at min 0 looks a bit sketchy...
Hello and good morning!
I love fluentScheduler and how everything works well for what I'm using it for with scheduling certain tasks to run in c# so thanks for that!
I have 2 questions.
This is my current code setup so far which works but I need to take it a step further and not sure how:
JobManager.AddJob(() => LabResultsEcomUpdater(1), (s) => s.ToRunOnceAt(09,00).AndEvery(1).Hours().Between(09, 00, 20, 00));
would this stop the code running after 8PM or would it start up again the next day, and how would i modify it to run every week day at 9 AM and every hour between 09 and 20 and making sure it starts up again the next day?
Thanks for the awesome code base! :)
-Joshua
The text was updated successfully, but these errors were encountered: