コード例 #1
0
 public IEnumerable <AbstractJob> GetAllJobs(JobConfiguration config)
 {
     return(GetJobs(JobType.All, JobScope.All, new string[] {}, config));
 }
コード例 #2
0
ファイル: JobConfiguration.cs プロジェクト: Riadhoq/aurelia
 public static void DumpConfiguration(JobConfiguration configuration, string filename)
 {
     FileSystemHelpers.DumpJson(filename, JObject.Parse(configuration.ToString()));
 }
コード例 #3
0
 public abstract IEnumerable <AbstractJob> GetJobs(JobType type, JobScope scope, IEnumerable <string> names, JobConfiguration config);