I know that I get a jobID as a returned value as in
var jobId = BackgroundJob.Schedule(
However, I would like to assign my own unique ID as the job ID so that the ID is always known to my code and associated with a given task (and easy to remove).
Is this possible, e.g.,
BackgroundJob.Schedule(jobID=1234(() =>…
or
BackgroundJob.Schedule.jobID=1234;
Thanks,
Ken