Hangfire.RecurringJobExtensions
Hangfire.RecurringJobExtensions copied to clipboard
Extensions for Hangfire to build RecurringJob automatically
Hi, I've just want to ask how can I inject dependency in the constructor because it always calls to the non-parameter constructor. Thanks in advance
Dear all, when i try to use context.GetJobData the following error occurs: Hangfire.Common.JobLoadException: Could not load the job. See inner exception for the details. ---> System.ArgumentNullException: Value cannot be null....
Could it be posible to add an Async interface for IRecurringJob?
Hi, am very exited about this extension. Mainly being able to use json configuration files to define jobs to be created. I had to do some tweaking to get the...
Hello, We are using your excellent hangfire extension.However, we are stuck at trying to get the recurringjob.json method of recurring jobs. we get the following error: Newtonsoft.json.JsonSerializationException 'Error converting value...
Hi, Is the extension compatible with .NET 4.6 projects? If so, how do I configure it in the Startup class?
--With encapsulation of the the interface ScheduleJobManager, which support DI. Like following: ``` await _scheduleJobManager.ExecuteScheduleAsync(args1); await _scheduleJobManager.ExecuteBackgroundJobAsync(null, new TimeSpan(0, 0, 5, 0), args1); ```
for some reason my jobs are getting enqueued but not getting executed 
`"timezone": "China Standard Time"` * on linux : Asia/Shanghai * on windows : China Standard Time `"timezone": "Asia/Shanghai"` * on linux : Asia/Shanghai * on windows : China Standard Time
Hello No way to use depency injection inside a job ? ,because IRecurringJob must declare a public prameterless constructor Thanks