Beispiel #1
0
 /// <summary>
 /// Calls the equivalent method on the 'proxied' <see cref="QuartzScheduler" />.
 /// </summary>
 public Collection.ISet <string> GetPausedTriggerGroups()
 {
     return(sched.GetPausedTriggerGroups());
 }
Beispiel #2
0
 /// <summary>
 /// Calls the equivalent method on the 'proxied' <see cref="QuartzScheduler" />.
 /// </summary>
 public Task <ISet <string> > GetPausedTriggerGroups()
 {
     return(sched.GetPausedTriggerGroups());
 }
 /// <summary>
 /// Calls the equivalent method on the 'proxied' <see cref="QuartzScheduler" />.
 /// </summary>
 public Task <IReadOnlyCollection <string> > GetPausedTriggerGroups(
     CancellationToken cancellationToken = default)
 {
     return(sched.GetPausedTriggerGroups(cancellationToken));
 }
Beispiel #4
0
 /// <seealso cref="QuartzScheduler.GetPausedTriggerGroups(SchedulingContext)">
 /// </seealso>
 public ISet GetPausedTriggerGroups()
 {
     return(sched.GetPausedTriggerGroups(schedCtxt));
 }