fluentscheduler / FluentScheduler

Automated job scheduler with fluent interface for the .NET platform.
Other
2.67k stars 407 forks source link

Run everyday at specific hours #294

Closed bugproof closed 3 years ago

bugproof commented 3 years ago

Let's say I want to run a specific function every day at 9:00 at 12:00 and 16:00

Is this the right code to do it?

registry.Schedule<MyJob>().ToRunEvery(1).Days().At(9, 0);
registry.Schedule<MyJob>().ToRunEvery(1).Days().At(12, 0);
registry.Schedule<MyJob>().ToRunEvery(1).Days().At(16, 0);

is ToRunEvery(1).Days() everyday??

bugproof commented 3 years ago

Closing this as I'm not going to use FluentScheduler anymore due to poor docs