Set an “on demand” only job in HangFire
问题 In Hangfire, I have successfully set recurring jobs and am able to trigger manually if I want to, thanks to the Web UI and its "trigger" button. RecurringJob.AddOrUpdate(..); But I'm willing to set a job that is never fired automatically. Only on demand from the WebUi. Think of it as a set of maintenance task that are triggered only when needed. Manually. I was thinking of adding a non-reccuring Job in the await state, but was not able to (and it sounds wrong). Are "On demand only" jobs