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