You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

46 lines
1.3 KiB
C#

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

using DSWeb.Job.Common;
using Quartz.Impl;
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace DSWeb.Job.SendEdiToYard
{
class Program
{
static void Main(string[] args)
{
//if (Environment.UserInteractive)
//{
Console.Title = "舱单主分单延迟提交服务程序";
Console.WriteLine("服务启动中……");
StdSchedulerFactory.GetDefaultScheduler().Start();
StdSchedulerFactory.GetDefaultScheduler().ListenerManager.AddSchedulerListener(new JobListener());
Console.WriteLine("服务已启动输入quit退出");
while (true)
{
if (Console.ReadLine() == "quit")
{
StdSchedulerFactory.GetDefaultScheduler().Shutdown();
break;
}
}
//}
//else
//{
// ServiceBase[] ServicesToRun;
// ServicesToRun = new ServiceBase[]
// {
// new MskService()
// };
// ServiceBase.Run(ServicesToRun);
//}
}
}
}