/// <summary>
 /// Calls the equivalent method on the 'proxied' <see cref="QuartzScheduler" />.
 /// </summary>
 public Task Clear(
     CancellationToken cancellationToken = default)
 {
     return(sched.Clear(cancellationToken));
 }
Beispiel #2
0
 /// <summary>
 /// Calls the equivalent method on the 'proxied' <see cref="QuartzScheduler" />.
 /// </summary>
 public void Clear()
 {
     sched.Clear();
 }
Beispiel #3
0
 /// <summary>
 /// Calls the equivalent method on the 'proxied' <see cref="QuartzScheduler" />.
 /// </summary>
 public Task Clear()
 {
     return(sched.Clear());
 }