Exemplo n.º 1
0
 /// <summary>
 /// Calls the equivalent method on the 'proxied' <see cref="QuartzScheduler" />.
 /// </summary>
 public virtual Task <IJobDetail> GetJobDetail(JobKey jobKey)
 {
     return(sched.GetJobDetail(jobKey));
 }
Exemplo n.º 2
0
 /// <summary>
 /// Calls the equivalent method on the 'proxied' <see cref="QuartzScheduler" />.
 /// </summary>
 public virtual IJobDetail GetJobDetail(JobKey jobKey)
 {
     return(sched.GetJobDetail(jobKey));
 }
Exemplo n.º 3
0
 /// <summary>
 /// Calls the equivalent method on the 'proxied' <see cref="QuartzScheduler" />,
 /// passing the <see cref="SchedulingContext" /> associated with this
 /// instance.
 /// </summary>
 public virtual JobDetail GetJobDetail(string jobName, string jobGroup)
 {
     return(sched.GetJobDetail(schedCtxt, jobName, jobGroup));
 }