コード例 #1
0
ファイル: StdScheduler.cs プロジェクト: 15831944/tool
 /// <summary>
 /// Calls the equivalent method on the 'proxied' <see cref="QuartzScheduler" />.
 /// </summary>
 public virtual Collection.ISet <JobKey> GetJobKeys(GroupMatcher <JobKey> matcher)
 {
     return(sched.GetJobKeys(matcher));
 }
コード例 #2
0
ファイル: StdScheduler.cs プロジェクト: zidanfei/quartznet
 /// <summary>
 /// Calls the equivalent method on the 'proxied' <see cref="QuartzScheduler" />.
 /// </summary>
 public virtual Task <ISet <JobKey> > GetJobKeys(GroupMatcher <JobKey> matcher)
 {
     return(sched.GetJobKeys(matcher));
 }