I need to set a gap between processing jobs. i.e wait 30 seconds before processing the net job.
I’ve added the following line to my startup.cs file, however the server says it’s running 16 threads:
var options = new BackgroundJobServerOptions { WorkerCount = Environment.ProcessorCount * 1 };
Does anyone know if what I’m trying to acheive is possible?