CronNET
CronNET copied to clipboard
C# library for running cron jobs on .NET
Hello, It works like charm. Thanks a lot. Please can you add a parameterized thread too so that I can receive a parameter when my cron job starts. thanks a...
Hi, Please, I need some guide how to implement a CronJob with async methods in WebApi, I tried put it in startup, but OWIN configure is non-async. Thanks in advance.
Hello, I tried to schedule a task at * 1,10,20 * * * but i got bad expression error. It will be very helpful if cronNET support such kind of...
// if (DateTime.Now.Minute != _last.Minute) // { _last = DateTime.Now; foreach (ICronJob job in cron_jobs) job.execute(DateTime.Now); // }
I believe they should improve schedule execution, especially when one job does not have to wait for another to finish.
Thanks for posting this repo, it is helpful to me when creating simple scheduled background jobs. I made a small change to allow a timezone offset such that a job...
I get this exception: ortedException Thread abort is not supported on this platform. at void System.Threading.Thread.Abort() at void CronNET.CronJob.abort() at void CronNET.CronDaemon.Stop() Thread Abort is not supported in NetCore.