In Hangfire, I successfully install recurring jobs and can start manually if I want, thanks to the web interface and its trigger button.
RecurringJob.AddOrUpdate(..);

But I'm ready to set up a task that never starts automatically. Only on request from WebUi. Think of it as a set of maintenance tasks that run only when necessary. Manually.
I was thinking about adding a non-reccuring Job to a wait state, but I couldn’t (and it sounds wrong).
Are On Demand Jobs possible with Hangfire?
source share