/// <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));
 }
Beispiel #2
0
 /// <summary>
 /// Calls the equivalent method on the 'proxied' <see cref="QuartzScheduler" />.
 /// </summary>
 public virtual IList <string> GetTriggerGroupNames()
 {
     return(sched.GetTriggerGroupNames());
 }
Beispiel #3
0
 /// <summary>
 /// Calls the equivalent method on the 'proxied' <see cref="QuartzScheduler" />.
 /// </summary>
 public virtual Task <IReadOnlyList <string> > GetTriggerGroupNames()
 {
     return(sched.GetTriggerGroupNames());
 }