//Fire and Forget Job - this job is executed only once
var parentjobId = BackgroundJob.Enqueue(() => Console.WriteLine("Parent job done suceessfully!"));
//Continuations Job - this job executed when its parent job is executed.
BackgroundJob.ContinueJobWith(parentjobId, () => Console.WriteLine("Child job done successfully!"), JobContinuationOptions.OnlyOnSucceededState);
I want Continuation Job recurring ?how can I do that ?