我已經使用Quartz.net調度某個任務。問題在於它僅在本地調試時才起作用。 該代碼在我的本地服務器和生產環境中無法正常工作。 請不要將其標記爲重複的,因爲其他問題中提到的解決方案都不能解決我的問題。 public class JobScheduler
{
public static ISchedulerFactory schedFact;
public static IS
背景:我需要使用計劃任務來掃描數據表(1分鐘掃描一次,或者30秒一次),數據表會增加記錄,第三個數據源中的數據表與收集作爲參數做一個Thing,這個事情所需的時間無法確定(一個http請求),修改後的每個數據庫記錄狀態完成後,避免再次掃描下一次查詢時出現。 public class ScanJob : IJob
{
//Simulation of the data table, the
我使用石英2.5.0.0 ,我有下面的代碼運行,我想任何工作。 我所有的工作都留在一個文件夾中,因爲我只是把它放在那裏。 var scheduler = StdSchedulerFactory.GetDefaultScheduler();
scheduler.Start();
var t = new ImportingLib.Importer();
t.DoImport();
fore