Exemplo n.º 1
0
 /// <summary>
 /// Calls the equivalent method on the 'proxied' <see cref="QuartzScheduler" />.
 /// </summary>
 public virtual Task ResumeJob(JobKey jobKey)
 {
     return(sched.ResumeJob(jobKey));
 }
Exemplo n.º 2
0
 /// <summary>
 /// Calls the equivalent method on the 'proxied' <see cref="QuartzScheduler" />.
 /// </summary>
 public virtual void ResumeJob(JobKey jobKey)
 {
     sched.ResumeJob(jobKey);
 }
Exemplo n.º 3
0
 /// <summary>
 /// Calls the equivalent method on the 'proxied' <see cref="QuartzScheduler" />,
 /// passing the <see cref="SchedulingContext" /> associated with this
 /// instance.
 /// </summary>
 public virtual void ResumeJob(string jobName, string groupName)
 {
     sched.ResumeJob(schedCtxt, jobName, groupName);
 }