摘要: 1 /// 2 /// DataTable与实体类互相转换 3 /// 4 /// 实体类 5 public class ModelHandler where T : new() 6 { 7 #region Data... 阅读全文
posted @ 2016-01-26 15:29 我在赫尔辛基火车站 阅读(213) 评论(0) 推荐(0)
摘要: 有两种格式的时间戳10位的,后面加7个013位的,后面加4个01 DateTime dtStart = TimeZone.CurrentTimeZone.ToLocalTime(new DateTime(1970, 1, 1));2 //long lTime = long.Parse("14... 阅读全文
posted @ 2016-01-26 14:28 我在赫尔辛基火车站 阅读(452) 评论(0) 推荐(0)
摘要: Plug-InsQuartz provides an interface (ISchedulerPlugin) for plugging-in additional functionality.Plugins that ship with Quartz to provide various util... 阅读全文
posted @ 2016-01-26 13:23 我在赫尔辛基火车站 阅读(270) 评论(0) 推荐(0)
摘要: ClusteringClustering currently only works with the AdoJobstore (JobStoreTX). Features include load-balancing and job fail-over (if the JobDetail's "re... 阅读全文
posted @ 2016-01-26 13:21 我在赫尔辛基火车站 阅读(305) 评论(0) 推荐(0)
摘要: Quartz is architected in modular way, and therefore to get it running, several components need to be "snapped" together. Fortunately, some helpers exi... 阅读全文
posted @ 2016-01-26 13:16 我在赫尔辛基火车站 阅读(794) 评论(0) 推荐(0)
摘要: JobStore's are responsible for keeping track of all the "work data" that you give to the scheduler: jobs, triggers, calendars, etc. Selecting the appr... 阅读全文
posted @ 2016-01-26 13:14 我在赫尔辛基火车站 阅读(396) 评论(0) 推荐(0)
摘要: SchedulerListeners are much like ITriggerListeners and IJobListeners, except they receive notification of events within the scheduler itself - not nec... 阅读全文
posted @ 2016-01-26 11:35 我在赫尔辛基火车站 阅读(542) 评论(0) 推荐(0)
摘要: Listeners are objects that you create to perform actions based on events occuring within the scheduler. As you can probably guess, TriggerListeners re... 阅读全文
posted @ 2016-01-26 11:31 我在赫尔辛基火车站 阅读(449) 评论(0) 推荐(0)
摘要: CronTriggers are often more useful than SimpleTrigger, if you need a job-firing schedule that recurs based on calendar-like notions, rather than on th... 阅读全文
posted @ 2016-01-26 11:23 我在赫尔辛基火车站 阅读(252) 评论(0) 推荐(0)
摘要: SimpleTrigger should meet your scheduling needs if you need to have a job execute exactly once at a specific moment in time, or at a specific moment i... 阅读全文
posted @ 2016-01-26 11:10 我在赫尔辛基火车站 阅读(354) 评论(0) 推荐(0)
摘要: Like jobs, triggers are relatively easy to work with, but do contain a variety of customizable options that you need to be aware of and understand bef... 阅读全文
posted @ 2016-01-26 10:34 我在赫尔辛基火车站 阅读(434) 评论(0) 推荐(0)