Skip to content

Instantly share code, notes, and snippets.

@bariscanyilmaz
Created January 9, 2020 00:59
Show Gist options
  • Save bariscanyilmaz/46d6547ea648586a40b67fafcc8dcd52 to your computer and use it in GitHub Desktop.
Save bariscanyilmaz/46d6547ea648586a40b67fafcc8dcd52 to your computer and use it in GitHub Desktop.
//Fire-and-Forget
BackgroundJob.Enqueue(()=>Console.WriteLine("Fire-and-Forget "));
//Recurring
RecurringJob.AddOrUpdate(()=>Console.WriteLine("Recurring "),Cron.Daily);
//Delayed Jobs
var jobId= BackgroundJob.Schedule(()=>Console.WriteLine("10 seconds Delayed"),TimeSpan.FromSeconds(10));
//Continuations
BackgroundJob.ContinueJobWith(jobId,()=>Console.WriteLine("Continuations"));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment