Кварц 3.06 не выполняет задания из файла XML - PullRequest
0 голосов
/ 17 сентября 2018

Я пытался выполнить этот код .. но, к сожалению, код не работает .. он работает в более старых версиях

    static async void QuartzInitializer()
    {
        try
        {
            ILog log = LogManager.GetLogger(typeof(Program));
            // our properties that enable XML configuration plugin
            var properties = new NameValueCollection
            {
            ["quartz.plugin.triggHistory.type"] = "Quartz.Plugin.History.LoggingJobHistoryPlugin, Quartz.Plugins",
            ["quartz.plugin.jobInitializer.type"] = "Quartz.Plugin.Xml.XMLSchedulingDataProcessorPlugin, Quartz.Plugins",
            ["quartz.plugin.jobInitializer.fileNames"] = "quartz_jobs.xml",
            ["quartz.plugin.jobInitializer.failOnFileNotFound"] = "true",
            ["quartz.plugin.jobInitializer.scanInterval"] = "60",

            };
            ISchedulerFactory sf = new StdSchedulerFactory(properties);
            IScheduler sched = await sf.GetScheduler();
            await sched.Start();
            await Task.Delay(TimeSpan.FromMinutes(5));
        }
        catch (Exception ex)
        {
            Main();
        }
    }

Исключение не выбрасывается. Я попытался с помощью попробовать поймать также. его выход в ожидании sched.Start ();

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...