Exemplo n.º 1
0
 /// <summary>
 /// Calls the equivalent method on the 'proxied' <see cref="QuartzScheduler" />.
 /// </summary>
 public virtual Task <IReadOnlyCollection <string> > GetTriggerGroupNames(
     CancellationToken cancellationToken = default)
 {
     return(sched.GetTriggerGroupNames(cancellationToken));
 }
Exemplo n.º 2
0
 /// <summary>
 /// Calls the equivalent method on the 'proxied' <see cref="QuartzScheduler" />.
 /// </summary>
 public virtual IList <string> GetTriggerGroupNames()
 {
     return(sched.GetTriggerGroupNames());
 }
Exemplo n.º 3
0
 /// <summary>
 /// Calls the equivalent method on the 'proxied' <see cref="QuartzScheduler" />.
 /// </summary>
 public virtual Task <IReadOnlyList <string> > GetTriggerGroupNames()
 {
     return(sched.GetTriggerGroupNames());
 }