Exemplo n.º 1
0
 /// <summary>
 /// Calls the equivalent method on the 'proxied' <see cref="QuartzScheduler" />.
 /// </summary>
 public bool CheckExists(JobKey jobKey)
 {
     return(sched.CheckExists(jobKey));
 }
Exemplo n.º 2
0
 /// <summary>
 /// Calls the equivalent method on the 'proxied' <see cref="QuartzScheduler" />.
 /// </summary>
 public Task <bool> CheckExists(JobKey jobKey)
 {
     return(sched.CheckExists(jobKey));
 }