Hi,
We want to process BackgroundJob one at a time/sequentially, i.e. only starts processing the next BackgroundJob if the current one is completed or failed.
So If there are 3 jobs queued, task1 is processed first, once task1 is completed/failed, task2 is processed, once task2 is completed/failed, task3 is processed.
Is using a workerCount of 1 when initializing Hangfire
config.UseServer(1);
the correct way to do this ?
Thanks