Ejemplo n.º 1
0
 /// <summary>
 /// Calls the equivalent method on the 'proxied' <see cref="QuartzScheduler" />.
 /// </summary>
 public virtual void ResumeJobs(GroupMatcher <JobKey> matcher)
 {
     sched.ResumeJobs(matcher);
 }
Ejemplo n.º 2
0
 /// <summary>
 /// Calls the equivalent method on the 'proxied' <see cref="QuartzScheduler" />.
 /// </summary>
 public virtual Task ResumeJobs(GroupMatcher <JobKey> matcher)
 {
     return(sched.ResumeJobs(matcher));
 }