Pilgaard.BackgroundJobs
Pilgaard.BackgroundJobs copied to clipboard
A dotnet library for running background jobs in a scalable and performant manner. The jobs can trigger based on cron expressions, intervals or absolute datetime.
When updating to `NET8.0`, I have the following updates in mind: - Replace usage of `DateTime.UtcNow` with the equivalents in the new [TimeProvider](https://learn.microsoft.com/en-us/dotnet/api/system.timeprovider?view=net-8.0). - Add convenience methods for adding cronjobs...
I've discovered an issue where CronJobs run several times when their trigger time is reached. So far I have not been able to find a pattern as to when it...