skip to Main Content

How can i start Hangfire every 00 and 30 minutes?

For Examle, i start project 13:20, Hangfire must start 13:30, 14:00, 14:30, 15:00 … etc.

I know how to start hangfire every 30 minutes expression ("*/30 * * * *") but my hangfire need to start not only every 30 minutes but also at exact xx:30 and xx:00 times.

What should be my cron job expression?

https://crontab.cronhub.io/

2

Answers


  1. 0,30 * * * *
    

    This is not a coding-related question though.

    Login or Signup to reply.
  2. you Should use this

    RecurringJob.AddOrUpdate(() => Console.Write("Recurring"), "*/30 * * * *");
    

    Reference to my question in Hangfire forums: http://discuss.hangfire.io/t/how-to-create-cron-job-that-is-executing-every-15-minutes/533

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search