在Topshelf中安排多个Quartz作业

时间:2014-01-22 21:46:34

标签: quartz.net topshelf

在此处阅读Topshelf集成的文档:https://github.com/dtinteractive/Topshelf.Integrations

它似乎应该像在HostFactory内安排多个石英作业一样简单,但看起来第二个预定作业是唯一正在运行的作业。

我不确定如何从这里开始。但我需要安排两个按不同时间表运行的工作。第一个应该是每天运行而第二个每小时运行一次。

static void Main(string[] args)
    {
        HostFactory.Run(x =>                                 
        {
            x.ScheduleQuartzJobAsService(q =>
                q.WithJob(() => JobBuilder.Create<TmsIdImportTask>().Build())
                    .AddTrigger(() =>
                        TriggerBuilder.Create()
                            .WithSimpleSchedule(builder => builder
                                .WithIntervalInMinutes(Int32.Parse(ConfigurationManager.AppSettings["ScheduleImportFrequencyInMinutes"]))
                                .RepeatForever()).Build())
            );

            x.ScheduleQuartzJobAsService(q =>
                q.WithJob(() => JobBuilder.Create<ImportTmsXMLTask>().Build())
                    .AddTrigger(() => TriggerBuilder.Create().WithSimpleSchedule(builder =>
                        builder.WithIntervalInMinutes(Int32.Parse(ConfigurationManager.AppSettings["TMSImportFrequencyInMinutes"]))
                        .RepeatForever()).Build())
                        );


            x.RunAsLocalSystem();

            var description = ConfigurationManager.AppSettings["ServiceDescription"];
            x.SetDescription(description);

            var displayName = ConfigurationManager.AppSettings["ServiceDisplayName"];
            x.SetDisplayName(displayName);

            var serviceName = ConfigurationManager.AppSettings["ServiceName"];
            x.SetServiceName(serviceName);                       
        });       
    }

2 个答案:

答案 0 :(得分:8)

我相信你遇到问题的原因是因为你正在使用

x.ScheduleQuartzJobAsService

而不是

x.ScheduleQuartzJob

我刚刚第一次使用Quartz,但我有20个不同的时间表在同一个主机上运行

答案 1 :(得分:4)

在Topshelf-Quartz集成上创建第二个服务或平台,并拥有一个初始化两个Quartz实例的服务并将其关闭。

Topshelf只会按设计托管一个[服务]流程。如果Topshelf托管多个流程,您无法管理或监控任何有用程度的内容。它最终成为一种不可持续的模式。