Пример #1
0
 protected void Application_Start()
 {
     // 配置信息读取
     ConfigInit.InitConfig();
     AreaRegistration.RegisterAllAreas();
     RouteConfig.RegisterRoutes(RouteTable.Routes);
     // 获取远程任务服务器上的 Scheduler
     QuartzHelper.InitRemoteScheduler();
 }
Пример #2
0
 protected void Application_Start(object sender, EventArgs e)
 {
     try
     {
         QuartzHelper.InitRemoteScheduler();
     }
     catch (Exception ex)
     {
         throw;
     }
 }
Пример #3
0
        protected void Application_Start()
        {
            AreaRegistration.RegisterAllAreas();
            FilterConfig.RegisterGlobalFilters(GlobalFilters.Filters);
            RouteConfig.RegisterRoutes(RouteTable.Routes);
            BundleConfig.RegisterBundles(BundleTable.Bundles);

            ConfigInit.InitConfig();

            // 获取远程任务服务器上的 Scheduler
            QuartzHelper.InitRemoteScheduler();
        }
Пример #4
0
 protected void Application_Start(object sender, EventArgs e)
 {
     QuartzHelper.InitRemoteScheduler();
 }