Hangfire.RecurringJobExtensions icon indicating copy to clipboard operation
Hangfire.RecurringJobExtensions copied to clipboard

Extensions for Hangfire to build RecurringJob automatically

Results 12 Hangfire.RecurringJobExtensions issues
Sort by recently updated
recently updated
newest added

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...

help wanted

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 ![image](https://user-images.githubusercontent.com/19664420/47409981-01293c00-d782-11e8-913c-ab580e409231.png)

`"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

enhancement