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