Trigger job from a client

Is it possible to trigger a recurring job from a HF client so that the job is just enqued and then ran by HF server (another machine)?

This question is related to this issue in GitHub: https://github.com/HangfireIO/Hangfire/issues/165

If this would not be possible, I guess it still can be done by directly adding the job to the database or by setting “NextExecution” field in the Hash table to Datetime.Now. Still, I believe this should be done through HF API.

@gius, sorry for the delay. Yes, there is the RecurringJobManager class that provides low-level API. You can use it to trigger recurring background jobs.

Any example code? I intend to write automated test for testing job result.