When I create reccuring job:
var manager = new RecurringJobManager();
manager.AddOrUpdate("job_name", Job.FromExpression<MyService>(x => x.RunServiceMethod()), Cron.Minutely());
It’s working. But when I stop my application and run it after some hours the jobs are queue and trigger many times. How can I do disable queue or clear queue jobs?