コード例 #1
0
ファイル: StdScheduler.cs プロジェクト: zidanfei/quartznet
 /// <summary>
 /// Calls the equivalent method on the 'proxied' <see cref="QuartzScheduler" />.
 /// </summary>
 public virtual Task <IReadOnlyList <ITrigger> > GetTriggersOfJob(JobKey jobKey)
 {
     return(sched.GetTriggersOfJob(jobKey));
 }
コード例 #2
0
ファイル: StdScheduler.cs プロジェクト: 15831944/tool
 /// <summary>
 /// Calls the equivalent method on the 'proxied' <see cref="QuartzScheduler" />.
 /// </summary>
 public virtual IList <ITrigger> GetTriggersOfJob(JobKey jobKey)
 {
     return(sched.GetTriggersOfJob(jobKey));
 }
コード例 #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 Trigger[] GetTriggersOfJob(string jobName, string groupName)
 {
     return(sched.GetTriggersOfJob(schedCtxt, jobName, groupName));
 }