在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
源代码地址: https://github.com/fluentscheduler/FluentScheduler 使用NuGet安装FluentScheduler 这是我实际项目中用到的代码,也可看此博主的文章http://www.cnblogs.com/mafly/p/FluentScheduler.html 在Controller中写 public class TimedTask : IJob, IRegisteredObject { private readonly object _lock = new object(); private bool _shuttingDown; public Registry Start() { HostingEnvironment.RegisterObject(this); Registry registry = new Registry(); 在Global.asax中写 public class MvcApplication : System.Web.HttpApplication { protected void Application_Start() { //定时任务 TimedTask timedtask = new TimedTask(); JobManager.Initialize(timedtask.Start()); } }
|
请发表评论